jiti-meet/logging_config.js

20 lines
713 B
JavaScript
Raw Normal View History

/* eslint-disable no-unused-vars, no-var */
2016-11-21 21:08:39 +00:00
// Logging configuration
// XXX When making any changes to this file make sure to also update it's React
// version at ./react/features/base/logging/reducer.js !!!
var loggingConfig = {
// default log level for the app and lib-jitsi-meet
defaultLogLevel: 'trace',
// Option to disable LogCollector (which stores the logs on CallStats)
// disableLogCollector: true,
// The following are too verbose in their logging with the
// {@link #defaultLogLevel}:
2018-01-03 23:30:54 +00:00
'modules/statistics/CallStats.js': 'info',
'modules/xmpp/strophe.util.js': 'log',
2018-01-03 23:30:54 +00:00
'modules/RTC/TraceablePeerConnection.js': 'info'
};
/* eslint-enable no-unused-vars, no-var */