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 22a93db commit cc6ac4fCopy full SHA for cc6ac4f
bufflog.ts
@@ -3,7 +3,7 @@ import formats from "dd-trace/ext/formats";
3
4
export class BuffLog {
5
pinoLogger: any;
6
- defaultLevel = 'notice';
+ defaultLevel = String.prototype.toLowerCase.apply(process.env.LOG_LEVEL) || "notice";;
7
8
constructor() {
9
this.pinoLogger = require('pino')({
0 commit comments