diff --git a/AK/SourceLocation.h b/AK/SourceLocation.h index 1fabd37869..1a90897b65 100644 --- a/AK/SourceLocation.h +++ b/AK/SourceLocation.h @@ -45,7 +45,7 @@ template<> struct AK::Formatter : AK::Formatter { ErrorOr format(FormatBuilder& builder, AK::SourceLocation location) { - return AK::Formatter::format(builder, "[{} @ {}:{}]", location.function_name(), location.filename(), location.line_number()); + return AK::Formatter::format(builder, "[\x1b[34m{}\x1b[0m @ {}:{}]", location.function_name(), location.filename(), location.line_number()); } };