Skip to content

Commit

Permalink
fix: set default log level to warn (#2039)
Browse files Browse the repository at this point in the history
  • Loading branch information
saikumarrs authored Feb 12, 2025
1 parent 2be4b83 commit f5387e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/analytics-js-common/src/v1.1/utils/logUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const LOG_LEVEL_INFO = 1;
const LOG_LEVEL_DEBUG = 2;
const LOG_LEVEL_WARN = 3;
const LOG_LEVEL_ERROR = 4;
const DEF_LOG_LEVEL = LOG_LEVEL_ERROR;
const DEF_LOG_LEVEL = LOG_LEVEL_WARN;
let LOG_LEVEL = DEF_LOG_LEVEL;

const logger = {
Expand Down

0 comments on commit f5387e0

Please sign in to comment.