diff options
author | Gabriel Russell <gabriel.russell@mongodb.com> | 2019-11-25 22:16:49 +0000 |
---|---|---|
committer | evergreen <evergreen@mongodb.com> | 2019-11-25 22:16:49 +0000 |
commit | a29cb7d084afa62772776fc2b58efb1df91c535f (patch) | |
tree | 4d75bc806f223b843f5f751936b53079d3c09896 /src/mongo/db/server_options.h | |
parent | bd31dd168c29d5aaa5ae2822f5673eff7a2850d7 (diff) | |
download | mongo-a29cb7d084afa62772776fc2b58efb1df91c535f.tar.gz |
SERVER-44142 correctly utilize LogSeverity in logv2
Diffstat (limited to 'src/mongo/db/server_options.h')
-rw-r--r-- | src/mongo/db/server_options.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/db/server_options.h b/src/mongo/db/server_options.h index f6d060837a3..2a7796f9307 100644 --- a/src/mongo/db/server_options.h +++ b/src/mongo/db/server_options.h @@ -102,8 +102,7 @@ struct ServerGlobalParams { bool logAppend = false; // True if logging to a file in append mode. bool logRenameOnRotate = true; // True if logging should rename log files on rotate bool logWithSyslog = false; // True if logging to syslog; must not be set if logpath is set. - bool logV2 = false; // True if logV1 logging statements should get plumbed through to logV2 - int syslogFacility; // Facility used when appending messages to the syslog. + int syslogFacility; // Facility used when appending messages to the syslog. #ifndef _WIN32 ProcessId parentProc; // --fork pid of initial process |