diff options
| author | Martin Ridgers <[email protected]> | 2021-10-28 11:33:47 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-11-18 15:24:39 +0100 |
| commit | 4df0770ffe6fb03ed7b5248a7fadef935d856ad3 (patch) | |
| tree | a79a51c4c3fccd7a99562a99edd7caa67ec88ee2 /zenserver/config.h | |
| parent | Filled out ZEN_THIRDPARTY_ macros for Clang and GCC (diff) | |
| download | zen-4df0770ffe6fb03ed7b5248a7fadef935d856ad3.tar.xz zen-4df0770ffe6fb03ed7b5248a7fadef935d856ad3.zip | |
Initial integration of Trace from UE5 via the --zentrace=y xmake config
Diffstat (limited to 'zenserver/config.h')
| -rw-r--r-- | zenserver/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zenserver/config.h b/zenserver/config.h index e7b228b91..0f3994893 100644 --- a/zenserver/config.h +++ b/zenserver/config.h @@ -25,6 +25,10 @@ struct ZenServerOptions std::filesystem::path ContentDir; // Root directory for serving frontend content (experimental) std::string HttpServerClass; // Choice of HTTP server implementation std::filesystem::path AbsLogFile; // Absolute path to main log file +#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 +#endif }; struct ZenUpstreamJupiterConfig |