-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 GitHub Actions / test (18.x, ubuntu-latest)
Check failure on line 229 in packages/integration-sdk-runtime/src/logger/index.ts GitHub Actions / test (20.x, ubuntu-latest)
|
||
return this._logger.debug(...params); | ||
} | ||
|
||
info(...params: any[]) { | ||
// @ts-ignore | ||
Check failure on line 234 in packages/integration-sdk-runtime/src/logger/index.ts GitHub Actions / test (18.x, ubuntu-latest)
Check failure on line 234 in packages/integration-sdk-runtime/src/logger/index.ts GitHub Actions / test (20.x, ubuntu-latest)
|
||
return this._logger.info(...params); | ||
} | ||
|
||
|
@@ -245,10 +248,13 @@ export class IntegrationLogger | |
}, | ||
); | ||
|
||
// @ts-ignore | ||
Check failure on line 251 in packages/integration-sdk-runtime/src/logger/index.ts GitHub Actions / test (18.x, ubuntu-latest)
Check failure on line 251 in packages/integration-sdk-runtime/src/logger/index.ts GitHub Actions / test (20.x, ubuntu-latest)
|
||
return this._logger.warn(...params); | ||
} | ||
|
||
fatal(...params: any[]) { | ||
|
||
// @ts-ignore | ||
return this._logger.fatal(...params); | ||
} | ||
|
||
|
@@ -287,6 +293,7 @@ export class IntegrationLogger | |
}, | ||
); | ||
|
||
// @ts-ignore | ||
this._logger.error(...params); | ||
} | ||
|
||
|