diff options
author | asynts <asynts@gmail.com> | 2021-01-11 21:13:30 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-16 11:54:35 +0100 |
commit | 01879d27c22a74a8900f570fa3e737f3d3f65fc1 (patch) | |
tree | fee4eb042fa58d79f14bf8c43eb2e5cb955c3450 /Userland/Libraries/LibTextCodec/Decoder.cpp | |
parent | 4953c73fc179449bf17c544845fa888a0a6de926 (diff) | |
download | serenity-01879d27c22a74a8900f570fa3e737f3d3f65fc1.zip |
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.
Diffstat (limited to 'Userland/Libraries/LibTextCodec/Decoder.cpp')
-rw-r--r-- | Userland/Libraries/LibTextCodec/Decoder.cpp | 2 |
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 {}; } |