Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
zemberdotnet committed Dec 12, 2023
1 parent a689268 commit 6e291c1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/integration-sdk-runtime/src/logger/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,12 @@ export class IntegrationLogger
}

debug(...params: any[]) {
// @ts-ignore

Check failure on line 229 in packages/integration-sdk-runtime/src/logger/index.ts

View workflow job for this annotation

GitHub Actions / test (18.x, ubuntu-latest)

Do not use "@ts-ignore" because it alters compilation errors

Check failure on line 229 in packages/integration-sdk-runtime/src/logger/index.ts

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Do not use "@ts-ignore" because it alters compilation errors
return this._logger.debug(...params);
}

info(...params: any[]) {
// @ts-ignore

Check failure on line 234 in packages/integration-sdk-runtime/src/logger/index.ts

View workflow job for this annotation

GitHub Actions / test (18.x, ubuntu-latest)

Do not use "@ts-ignore" because it alters compilation errors

Check failure on line 234 in packages/integration-sdk-runtime/src/logger/index.ts

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Do not use "@ts-ignore" because it alters compilation errors
return this._logger.info(...params);
}

Expand All @@ -245,10 +248,13 @@ export class IntegrationLogger
},
);

// @ts-ignore

Check failure on line 251 in packages/integration-sdk-runtime/src/logger/index.ts

View workflow job for this annotation

GitHub Actions / test (18.x, ubuntu-latest)

Do not use "@ts-ignore" because it alters compilation errors

Check failure on line 251 in packages/integration-sdk-runtime/src/logger/index.ts

View workflow job for this annotation

GitHub Actions / test (20.x, ubuntu-latest)

Do not use "@ts-ignore" because it alters compilation errors
return this._logger.warn(...params);
}

fatal(...params: any[]) {

// @ts-ignore
return this._logger.fatal(...params);
}

Expand Down Expand Up @@ -287,6 +293,7 @@ export class IntegrationLogger
},
);

// @ts-ignore
this._logger.error(...params);
}

Expand Down

0 comments on commit 6e291c1

Please sign in to comment.