summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibMain/Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibMain/Main.cpp')
-rw-r--r--Userland/Libraries/LibMain/Main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibMain/Main.cpp b/Userland/Libraries/LibMain/Main.cpp
index 2a4cf8371e..8c535ccd0d 100644
--- a/Userland/Libraries/LibMain/Main.cpp
+++ b/Userland/Libraries/LibMain/Main.cpp
@@ -24,7 +24,7 @@ int main(int argc, char** argv)
});
if (result.is_error()) {
auto error = result.release_error();
- warnln("Runtime error: {}", error);
+ warnln("\033[31;1mRuntime error\033[0m: {}", error);
#ifdef __serenity__
dbgln("\033[31;1mExiting with runtime error\033[0m: {}", error);
#endif