diff --git a/react/features/base/logging/reducer.ts b/react/features/base/logging/reducer.ts index 1937307efe..3f5a412e2b 100644 --- a/react/features/base/logging/reducer.ts +++ b/react/features/base/logging/reducer.ts @@ -17,8 +17,8 @@ const DEFAULT_LOGGING_CONFIG: ILoggingConfig = { loggers: { // The following are too verbose in their logging with the // {@link #defaultLogLevel}: - 'modules/RTC/TraceablePeerConnection': 'info', - 'modules/xmpp/strophe.util': 'log' + 'rtc:TraceablePeerConnection': 'info', + 'xmpp:strophe.util': 'log' } }; @@ -41,10 +41,10 @@ const DEFAULT_STATE = { // Reduce default verbosity on mobile, it kills performance. if (navigator.product === 'ReactNative') { const RN_LOGGERS: { [key: string]: LogLevel; } = { - 'modules/sdp/SDPUtil': 'info', - 'modules/xmpp/ChatRoom': 'warn', - 'modules/xmpp/JingleSessionPC': 'info', - 'modules/xmpp/strophe.jingle': 'info' + 'sdp:SDPUtils': 'info', + 'xmpp:ChatRoom': 'warn', + 'xmpp:JingleSessionPC': 'info', + 'xmpp:strophe.jingle': 'info' }; DEFAULT_STATE.config.loggers = {