-
Type: Improvement
-
Resolution: Done
-
Priority: Minor - P4
-
Affects Version/s: 2.7.5
-
Component/s: Logging
-
Server 2.7.6
Currently to configure a log component, you will need to specify a BSON document with the verbosity field:
db.runCommand({setParameter: 1, logComponentVerbosity: {replication: {verbosity: 3}}})
It would be desirable to replace the
{verbosity: 3}subdocument with a single integer if we do not intend to configure any subcomponents of replication:
db.runCommand({setParameter: 1, {logComponentVerbosity: {replication: 3}})
- depends on
-
SERVER-14416 support use of BSON configuring severity levels in the log component hierarchy
- Closed
- related to
-
SERVER-15486 Improve setParameter logComponentVerbosity validation
- Closed