On this page
db.setLogLevel()
On this page
Definition
db.setLogLevel( )-
New in version 3.0.
Sets a single verbosity level for log messages.
db.setLogLevel()has the following form:db.setLogLevel(<level>, <component>)db.setLogLevel()takes the following parameters:Parameter Type Description levelint The log verbosity level.
The verbosity level can range from
0to5:0is the MongoDB’s default log verbosity level, to include Informational messages.1to5increases the verbosity level to include Debug messages.
To inherit the verbosity level of the component’s parent, you can also specify
-1.componentstring Optional. The name of the component for which to specify the log verbosity level. The component name corresponds to the
<name>from the correspondingsystemLog.component.<name>.verbositysetting:accessControlcommandcontrolgeoindexnetworkqueryreplicationshardingstoragestorage.journalwrite
Omit to specify the default verbosity level for all components.
Behavior
db.setLogLevel() sets a single verbosity level. To set multiple verbosity levels in a single operation, use either the setParameter command to set the logComponentVerbosity parameter. You can also specify the verbosity settings in the configuration file. See Configure Log Verbosity Levels for examples.
Examples
Set Default Verbosity Level
Omit the <component> parameter to set the default verbosity for all components; i.e. the systemLog.verbosity setting. The operation sets the default verbosity to 1:
db.setLogLevel(1)
Set Verbosity Level for a Component
Specify the <component> parameter to set the verbosity for the component. The following operation updates the systemLog.component.storage.journal.verbosity to 2:
db.setLogLevel(2, "storage.journal" )