diff options
author | Sadie Powell <sadie@witchery.services> | 2025-05-16 15:15:42 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-05-16 15:15:42 +0100 |
commit | 3da8244de5d013cc9c390c194c195f5c4a81a0da (patch) | |
tree | 6a8fb0d8c9e894b6e9d21ffac44920704d148c75 /src/main.cpp | |
parent | 8722daa6e790241f1f7adab316a5ae908f28ce93 (diff) |
Log any startup error to the terminal.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index ad4a72443..5fed69345 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -152,7 +152,7 @@ int main(int ac, char **av, char **envp) } catch (const CoreException &ex) { - Log() << ex.GetReason(); + Log(LOG_TERMINAL) << "Error: " << ex.GetReason(); return EXIT_FAILURE; } |