Skip to content

Commit

Permalink
Adjust Default LogLevel to Warn (#871)
Browse files Browse the repository at this point in the history
This commit reduces verbose logging of events like PushPull, which may
not be necessary for developers. Setting LogLevel to Warn captures
important warnings and potential issues while improving overall log
relevance and reducing noise.
  • Loading branch information
gwbaik9717 authored Jul 17, 2024
1 parent 59d94ad commit 02111d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export enum LogLevel {
Fatal,
}

let level = LogLevel.Info;
let level = LogLevel.Warn;

/**
* `setLogLevel` sets log level.
Expand Down

0 comments on commit 02111d3

Please sign in to comment.