Skip to content

Commit

Permalink
remove debug console log
Browse files Browse the repository at this point in the history
  • Loading branch information
nk-coding committed Oct 20, 2024
1 parent a9c971f commit 6226fb5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion backend/src/backend-services/ims-user-finding.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,6 @@ export class ImsUserFindingService {
email?: string;
},
): Promise<UserLoginData | null> {
console.log(matchingInstance, matchingStrategy, imsUserTemplatedValues, imsUser);
const requiredLoginDataData = matchingStrategy.getLoginDataDataForImsUserTemplatedFields({
...imsUserTemplatedValues,
id: imsUser.id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,6 @@ export class JiraTokenDatacenterStrategyService extends Strategy {
);

if (!response.ok) {
console.log(response.status);
console.log(await response.text());
console.log(combineURL("rest/api/2/myself", strategyInstance.instanceConfig["imsTemplatedFieldsFilter"]["root-url"]))
return null;
}

Expand Down

0 comments on commit 6226fb5

Please sign in to comment.