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 49a1732 commit 618e1eeCopy full SHA for 618e1ee
content/techniques/logger.md
@@ -102,7 +102,7 @@ import { ConsoleLogger } from '@nestjs/common';
102
export class MyLogger extends ConsoleLogger {
103
error(message: any, stack?: string, context?: string) {
104
// add your tailored logic here
105
- super.error(message, stack, context);
+ super.error.apply(this, arguments);
106
}
107
108
```
0 commit comments