diff options
| author | Stefan Boberg <[email protected]> | 2023-12-19 23:07:30 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2023-12-19 23:07:30 +0100 |
| commit | 5cbbdba34c5daab85076e2fbbf07718f4965c2b2 (patch) | |
| tree | de0c18dfc1c3d31ab0bf680c1b1fbdbb1d74c125 /src | |
| parent | portability test (diff) | |
| download | zen-5cbbdba34c5daab85076e2fbbf07718f4965c2b2.tar.xz zen-5cbbdba34c5daab85076e2fbbf07718f4965c2b2.zip | |
default write/access log to off
Diffstat (limited to 'src')
| -rw-r--r-- | src/zenstore/include/zenstore/structuredcachestore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenstore/include/zenstore/structuredcachestore.h b/src/zenstore/include/zenstore/structuredcachestore.h index 56b2105a9..5732735cf 100644 --- a/src/zenstore/include/zenstore/structuredcachestore.h +++ b/src/zenstore/include/zenstore/structuredcachestore.h @@ -145,8 +145,8 @@ public: bool AllowAutomaticCreationOfNamespaces = false; struct LogConfig { - bool EnableWriteLog = true; - bool EnableAccessLog = true; + bool EnableWriteLog = false; + bool EnableAccessLog = false; } Logging; }; |