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 478B

123456789101112131415
  1. /* eslint-disable no-unused-vars, no-var */
  2. // Logging configuration
  3. var loggingConfig = {
  4. // default log level for the app and lib-jitsi-meet
  5. defaultLogLevel: 'trace',
  6. // Option to disable LogCollector (which stores the logs on CallStats)
  7. // disableLogCollector: true,
  8. // Logging level adjustments for verbose modules:
  9. 'modules/xmpp/strophe.util.js': 'log',
  10. 'modules/statistics/CallStats.js': 'info'
  11. };
  12. /* eslint-enable no-unused-vars, no-var */