We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d82b1a3 commit cc0c8deCopy full SHA for cc0c8de
packages/grpc-js/src/logging.ts
@@ -22,7 +22,7 @@ let _logVerbosity: LogVerbosity = LogVerbosity.ERROR;
22
23
const verbosityString = process.env.GRPC_NODE_VERBOSITY ?? process.env.GRPC_VERBOSITY ?? '';
24
25
-switch (verbosityString) {
+switch (verbosityString.toUpperCase()) {
26
case 'DEBUG':
27
_logVerbosity = LogVerbosity.DEBUG;
28
break;
0 commit comments