summaryrefslogtreecommitdiff
path: root/src/mongo/logger
diff options
context:
space:
mode:
authorAnthony Roy <anthony.roy@10gen.com>2018-08-08 14:07:53 -0400
committerAnthony Roy <anthony.roy@10gen.com>2018-08-08 15:04:49 -0400
commit16f49c4cf96f0d1348e19945ac4f8e18c3348671 (patch)
tree26ce8b44a710040ecb1905b3a3bc051d289aff30 /src/mongo/logger
parente14f5e52d90219b72d286b73ea2d653a9c9373de (diff)
downloadmongo-16f49c4cf96f0d1348e19945ac4f8e18c3348671.tar.gz
SERVER-36532 Increase RamLog line size to 1024
Diffstat (limited to 'src/mongo/logger')
-rw-r--r--src/mongo/logger/ramlog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/logger/ramlog.h b/src/mongo/logger/ramlog.h
index 902471c4563..6ed396802ec 100644
--- a/src/mongo/logger/ramlog.h
+++ b/src/mongo/logger/ramlog.h
@@ -119,7 +119,7 @@ private:
enum {
N = 1024, // number of lines
- C = 512 // max size of line
+ C = 1024 // max size of line
};
const char* getLine_inlock(unsigned lineNumber) const;