diff options
author | Anthony Roy <anthony.roy@10gen.com> | 2018-08-08 14:07:53 -0400 |
---|---|---|
committer | Anthony Roy <anthony.roy@10gen.com> | 2018-08-08 15:04:49 -0400 |
commit | 16f49c4cf96f0d1348e19945ac4f8e18c3348671 (patch) | |
tree | 26ce8b44a710040ecb1905b3a3bc051d289aff30 /src | |
parent | e14f5e52d90219b72d286b73ea2d653a9c9373de (diff) | |
download | mongo-16f49c4cf96f0d1348e19945ac4f8e18c3348671.tar.gz |
SERVER-36532 Increase RamLog line size to 1024
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/logger/ramlog.h | 2 |
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; |