diff --git a/AK/ScopeLogger.h b/AK/ScopeLogger.h index a6403e0bcd7a1c..a54af87c32f56e 100644 --- a/AK/ScopeLogger.h +++ b/AK/ScopeLogger.h @@ -26,7 +26,7 @@ class ScopeLogger { if (m_extra.is_empty()) dbgln("\033[1;{}m{}entering {}\033[0m", m_depth % 8 + 30, sb.to_string(), m_location); else - dbgln("\033[1;{}m{}entering {} ({})\033[0m", m_depth % 8 + 30, sb.to_string(), m_location, m_extra); + dbgln("\033[1;{}m{}entering {}\033[0m ({})", m_depth % 8 + 30, sb.to_string(), m_location, m_extra); } ScopeLogger(SourceLocation location = SourceLocation::current()) @@ -44,7 +44,7 @@ class ScopeLogger { if (m_extra.is_empty()) dbgln("\033[1;{}m{}leaving {}\033[0m", depth % 8 + 30, sb.to_string(), m_location); else - dbgln("\033[1;{}m{}leaving {} ({})\033[0m", depth % 8 + 30, sb.to_string(), m_location, m_extra); + dbgln("\033[1;{}m{}leaving {}\033[0m ({})", depth % 8 + 30, sb.to_string(), m_location, m_extra); } private: