summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-05-16 15:15:42 +0100
committerSadie Powell <sadie@witchery.services>2025-05-16 15:15:42 +0100
commit3da8244de5d013cc9c390c194c195f5c4a81a0da (patch)
tree6a8fb0d8c9e894b6e9d21ffac44920704d148c75 /src
parent8722daa6e790241f1f7adab316a5ae908f28ce93 (diff)
Log any startup error to the terminal.
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp2
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;
}