diff options
| author | Dan Engelbrecht <[email protected]> | 2025-01-15 10:17:02 +0100 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2025-01-15 10:17:02 +0100 |
| commit | 53531a6b22dbb7b690db43964172e9d0f670c3c8 (patch) | |
| tree | eb826db2e3f8601df32f166f96fa291cc9e80de3 /src/zenserver/main.cpp | |
| parent | systemd unit file, incomplete (diff) | |
| download | zen-53531a6b22dbb7b690db43964172e9d0f670c3c8.tar.xz zen-53531a6b22dbb7b690db43964172e9d0f670c3c8.zip | |
clang format
Diffstat (limited to 'src/zenserver/main.cpp')
| -rw-r--r-- | src/zenserver/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/zenserver/main.cpp b/src/zenserver/main.cpp index 6bf369ca4..f35010866 100644 --- a/src/zenserver/main.cpp +++ b/src/zenserver/main.cpp @@ -313,7 +313,10 @@ ZenEntryPoint::Run() } catch (const std::system_error& e) { - ZEN_CRITICAL("Caught system error exception in main for process {}: {} ({})", zen::GetCurrentProcessId(), e.what(), e.code().value()); + ZEN_CRITICAL("Caught system error exception in main for process {}: {} ({})", + zen::GetCurrentProcessId(), + e.what(), + e.code().value()); RequestApplicationExit(1); } catch (const std::exception& e) |