Skip to content

Commit

Permalink
Update log level environment variable in server.ts (#2126)
Browse files Browse the repository at this point in the history
  • Loading branch information
drazisil authored Sep 15, 2024
2 parents c9c1fd5 + 7be5517 commit d01aa1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ try {
certificateFile: process.env['CERTIFICATE_FILE'],
privateKeyFile: process.env['PRIVATE_KEY_FILE'],
publicKeyFile: process.env['PUBLIC_KEY_FILE'],
logLevel: process.env['LOG_LEVEL'] || "info",
logLevel: process.env['MCO_LOG_LEVEL'] || "info",
});

const appLog = getServerLogger({
Expand Down

0 comments on commit d01aa1f

Please sign in to comment.