Skip to content

Commit 85c1a29

Browse files
committed
TA-4767: Add more logs
1 parent 636ff26 commit 85c1a29

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/core/profile/profile.service.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)