diff --git a/src/utils/logging.js b/src/utils/logging.js index c690ce239..89c4a64df 100644 --- a/src/utils/logging.js +++ b/src/utils/logging.js @@ -25,11 +25,7 @@ export const LogLevel = { */ const log = (level, ...message) => { // In production we don't log debug level and info level - // TODO PB-747: remove info and debug level once we found the blank screen issue - if ( - ENVIRONMENT === 'production' && - ![LogLevel.ERROR, LogLevel.WARNING, LogLevel.INFO, LogLevel.DEBUG].includes(level) - ) { + if (ENVIRONMENT === 'production' && ![LogLevel.ERROR, LogLevel.WARNING].includes(level)) { return }