File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export class ProfileService {
2727
2828 public async findProfile ( profileName : string ) : Promise < Profile > {
2929 return new Promise < Profile > ( ( resolve , reject ) => {
30- this . mapCelonisEnvProfile ( ) ;
30+ // this.mapCelonisEnvProfile();
3131 this . checkIfMissingProfile ( profileName , reject ) ;
3232 try {
3333 if ( process . env . TEAM_URL && process . env . API_TOKEN ) {
@@ -303,6 +303,8 @@ export class ProfileService {
303303 }
304304
305305 private checkIfMissingProfile ( profileName : string , reject : any ) : void {
306+ this . log . debug ( "teamUrl: " + process . env . TEAM_URL ) ;
307+ this . log . debug ( "apiToken: " + process . env . API_TOKEN ) ;
306308 if ( ! profileName && ( ! process . env . TEAM_URL || ! process . env . API_TOKEN ) ) {
307309 reject ( "Profile not found" ) ;
308310 }
You can’t perform that action at this time.
0 commit comments