diff options
| author | Stefan Boberg <[email protected]> | 2023-12-11 11:49:26 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-12-11 11:49:26 +0100 |
| commit | 7c0eaa5836d595fe4dbcea9d7c66f6444b29fddc (patch) | |
| tree | a0f190704e3273950496a388a11e4884dd94ba97 /src/zenserver/admin/admin.cpp | |
| parent | improved scrubbing of oplogs and filecas (#596) (diff) | |
| download | zen-7c0eaa5836d595fe4dbcea9d7c66f6444b29fddc.tar.xz zen-7c0eaa5836d595fe4dbcea9d7c66f6444b29fddc.zip | |
added details to trace initialization (#588)
this adds information on program name and command line to trace initialization
Diffstat (limited to 'src/zenserver/admin/admin.cpp')
| -rw-r--r-- | src/zenserver/admin/admin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenserver/admin/admin.cpp b/src/zenserver/admin/admin.cpp index a0c90c9a0..c2df847ad 100644 --- a/src/zenserver/admin/admin.cpp +++ b/src/zenserver/admin/admin.cpp @@ -482,7 +482,7 @@ HttpAdminService::HttpAdminService(GcScheduler& Scheduler, HttpContentType::kText, "Tracing is already enabled"sv); } - TraceStart(HostOrPath.c_str(), Type); + TraceStart("zenserver", HostOrPath.c_str(), Type); return Req.ServerRequest().WriteResponse(HttpResponseCode::OK, HttpContentType::kText, "Tracing started"); }, HttpVerb::kPost); |