You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

logging_config.js 713B

12345678910111213141516171819
  1. /* eslint-disable no-unused-vars, no-var */
  2. // Logging configuration
  3. // XXX When making any changes to this file make sure to also update it's React
  4. // version at ./react/features/base/logging/reducer.js !!!
  5. var loggingConfig = {
  6. // default log level for the app and lib-jitsi-meet
  7. defaultLogLevel: 'trace',
  8. // Option to disable LogCollector (which stores the logs on CallStats)
  9. // disableLogCollector: true,
  10. // The following are too verbose in their logging with the
  11. // {@link #defaultLogLevel}:
  12. 'modules/statistics/CallStats.js': 'info',
  13. 'modules/xmpp/strophe.util.js': 'log',
  14. 'modules/RTC/TraceablePeerConnection.js': 'info'
  15. };
  16. /* eslint-enable no-unused-vars, no-var */