Skip to content

Commit

Permalink
Merge pull request #68 from CesiumGS/fix-default-log-levels
Browse files Browse the repository at this point in the history
Fix default log levels
  • Loading branch information
lilleyse authored Sep 15, 2023
2 parents b52b084 + b56793e commit 60fda20
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/logging/Loggers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,13 @@ export class Loggers {
prettyPrint?: boolean,
logFilePath?: string
): Logger {
const consoleLogLevel = "info";
// The default log level for the logger itself, which determines
// up to which level messages will be sent to the targets.
const globalLogLevel = "info";

// The log levels for the individual targets.
const consoleLogLevel = "trace";
const fileLogLevel = "trace";
const globalLogLevel = "trace";

const transportTargetOptionsList: TransportTargetOptions[] = [];

Expand Down

0 comments on commit 60fda20

Please sign in to comment.