summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibTextCodec/Decoder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibTextCodec/Decoder.cpp')
-rw-r--r--Userland/Libraries/LibTextCodec/Decoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibTextCodec/Decoder.cpp b/Userland/Libraries/LibTextCodec/Decoder.cpp
index 6d4f2790f0..8cbc68df01 100644
--- a/Userland/Libraries/LibTextCodec/Decoder.cpp
+++ b/Userland/Libraries/LibTextCodec/Decoder.cpp
@@ -156,7 +156,7 @@ String get_standardized_encoding(const String& encoding)
if (trimmed_lowercase_encoding == "x-user-defined")
return "x-user-defined";
- dbg() << "TextCodec: Unrecognized encoding: " << encoding;
+ dbgln("TextCodec: Unrecognized encoding: {}", encoding);
return {};
}