From 3da8244de5d013cc9c390c194c195f5c4a81a0da Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 16 May 2025 15:15:42 +0100 Subject: Log any startup error to the terminal. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.cpp') 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; } -- cgit