Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

logging_config.js 1.1KB

1234567891011121314151617181920212223242526272829
  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. // The following are too verbose in their logging with the
  9. // {@link #defaultLogLevel}:
  10. 'modules/RTC/TraceablePeerConnection.js': 'info',
  11. 'modules/statistics/CallStats.js': 'info',
  12. 'modules/sdp/SDPUtil.js': 'info',
  13. 'modules/xmpp/JingleSessionPC.js': 'info',
  14. 'modules/xmpp/strophe.jingle.js': 'info',
  15. 'modules/xmpp/strophe.util.js': 'log'
  16. };
  17. /* eslint-enable no-unused-vars, no-var */
  18. // XXX Web/React server-includes logging_config.js into index.html.
  19. // Mobile/react-native requires it in react/features/base/logging. For the
  20. // purposes of the latter, (try to) export loggingConfig. The following
  21. // detection of a module system is inspired by webpack.
  22. typeof module === 'object'
  23. && typeof exports === 'object'
  24. && (module.exports = loggingConfig);