diff options
| author | Dan Engelbrecht <[email protected]> | 2023-09-11 09:21:50 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-11 15:21:50 +0200 |
| commit | 4d54de153862bfe21997afe83195b879de01e749 (patch) | |
| tree | 900104616727d41af93e4825b80f0ff2e953e71c /src/zenserver/config.h | |
| parent | better sorting of attachments in oplog blocks (#390) (diff) | |
| download | zen-4d54de153862bfe21997afe83195b879de01e749.tar.xz zen-4d54de153862bfe21997afe83195b879de01e749.zip | |
add `cache-write-log` and `cache-access-log“ configuration options (#394)
* add `cache-write-log` and `cache-access-log“ configuration options
Diffstat (limited to 'src/zenserver/config.h')
| -rw-r--r-- | src/zenserver/config.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/zenserver/config.h b/src/zenserver/config.h index 4f63e2644..0bb20aba4 100644 --- a/src/zenserver/config.h +++ b/src/zenserver/config.h @@ -139,13 +139,15 @@ struct ZenServerOptions bool IsTest = false; bool IsDedicated = false; // Indicates a dedicated/shared instance, with larger resource requirements bool StructuredCacheEnabled = true; - bool ExecServiceEnabled = true; - bool ComputeServiceEnabled = true; - bool ShouldCrash = false; // Option for testing crash handling - bool IsFirstRun = false; - bool NoSentry = false; - bool SentryAllowPII = false; // Allow personally identifiable information in sentry crash reports - bool ObjectStoreEnabled = false; + bool StructuredCacheWriteLogEnabled = false; + bool StructuredCacheAccessLogEnabled = false; + bool ExecServiceEnabled = true; + bool ComputeServiceEnabled = true; + bool ShouldCrash = false; // Option for testing crash handling + bool IsFirstRun = false; + bool NoSentry = false; + bool SentryAllowPII = false; // Allow personally identifiable information in sentry crash reports + bool ObjectStoreEnabled = false; #if ZEN_WITH_TRACE std::string TraceHost; // Host name or IP address to send trace data to std::string TraceFile; // Path of a file to write a trace |