|
@@ -1,5 +1,7 @@
|
1
|
1
|
/* eslint-disable no-unused-vars, no-var */
|
2
|
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 !!!
|
3
|
5
|
var loggingConfig = {
|
4
|
6
|
// default log level for the app and lib-jitsi-meet
|
5
|
7
|
defaultLogLevel: 'trace',
|
|
@@ -7,9 +9,10 @@ var loggingConfig = {
|
7
|
9
|
// Option to disable LogCollector (which stores the logs on CallStats)
|
8
|
10
|
// disableLogCollector: true,
|
9
|
11
|
|
10
|
|
- // Logging level adjustments for verbose modules:
|
11
|
|
- 'modules/xmpp/strophe.util.js': 'log',
|
|
12
|
+ // The following are too verbose in their logging with the
|
|
13
|
+ // {@link #defaultLogLevel}:
|
12
|
14
|
'modules/statistics/CallStats.js': 'info',
|
|
15
|
+ 'modules/xmpp/strophe.util.js': 'log',
|
13
|
16
|
'modules/RTC/TraceablePeerConnection.js': 'info'
|
14
|
17
|
};
|
15
|
18
|
|