Details
-
Improvement
-
Resolution: Done
-
Minor - P4
-
2.7.5
-
Server 2.7.6
Description
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}})
|
Attachments
Issue Links
- depends on
-
SERVER-14416 support use of BSON configuring severity levels in the log component hierarchy
-
- Closed
-
- is related to
-
DOCS-3694 Document named logging
-
- Closed
-
- related to
-
SERVER-15486 Improve setParameter logComponentVerbosity validation
-
- Closed
-