We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e770b5 commit 1d4c116Copy full SHA for 1d4c116
packages/open-next/src/adapters/logger.ts
@@ -43,7 +43,7 @@ const isDownplayedErrorLog = (errorLog: AwsSdkClientCommandErrorLog) =>
43
export function error(...args: any[]) {
44
// we try to catch errors from the aws-sdk client and downplay some of them
45
if (args.some((arg) => isDownplayedErrorLog(arg))) {
46
- debug(...args);
+ return debug(...args);
47
} else if (args.some((arg) => isOpenNextError(arg))) {
48
// In case of an internal error, we log it with the appropriate log level
49
const error = args.find((arg) => isOpenNextError(arg))!;
0 commit comments