From 0e4dc5f7a1424021faf2d4935409e37dd84b6e10 Mon Sep 17 00:00:00 2001 From: NonStdModel Date: Fri, 4 Jun 2021 20:26:39 +0200 Subject: [PATCH] LibKeyboard: Use correct filename in debug message --- Userland/Libraries/LibKeyboard/CharacterMapFile.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibKeyboard/CharacterMapFile.cpp b/Userland/Libraries/LibKeyboard/CharacterMapFile.cpp index f138b9ae44..362b3a5f21 100644 --- a/Userland/Libraries/LibKeyboard/CharacterMapFile.cpp +++ b/Userland/Libraries/LibKeyboard/CharacterMapFile.cpp @@ -25,14 +25,16 @@ Optional CharacterMapFile::load_from_file(const String& filena auto file = Core::File::construct(path); file->open(Core::OpenMode::ReadOnly); if (!file->is_open()) { - dbgln("Failed to open {}: {}", filename, file->error_string()); + dbgln("Failed to open {}: {}", path, file->error_string()); return {}; } auto file_contents = file->read_all(); auto json_result = JsonValue::from_string(file_contents); - if (!json_result.has_value()) + if (!json_result.has_value()) { + dbgln("Failed to load character map from file {}", path); return {}; + } auto json = json_result.value().as_object(); Vector map = read_map(json, "map");