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/LibKeyboard | |
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/LibKeyboard')
-rw-r--r-- | Userland/Libraries/LibKeyboard/CharacterMapFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibKeyboard/CharacterMapFile.cpp b/Userland/Libraries/LibKeyboard/CharacterMapFile.cpp index b6fdc593ed..1417783746 100644 --- a/Userland/Libraries/LibKeyboard/CharacterMapFile.cpp +++ b/Userland/Libraries/LibKeyboard/CharacterMapFile.cpp @@ -45,7 +45,7 @@ Optional<CharacterMapData> CharacterMapFile::load_from_file(const String& file_n auto file = Core::File::construct(path); file->open(Core::IODevice::ReadOnly); if (!file->is_open()) { - dbg() << "Failed to open " << file_name << ":" << file->error_string(); + dbgln("Failed to open {}: {}", file_name, file->error_string()); return {}; } |