From 4057282706e9e47a55768c6c4ff91d6650a4486d Mon Sep 17 00:00:00 2001 From: Dmugetsu Date: Mon, 21 Apr 2025 06:52:18 -0600 Subject: [PATCH] adding logger --- src/emulator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emulator.cpp b/src/emulator.cpp index ae4a153ca..05cff02b7 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -333,7 +333,7 @@ void Emulator::LoadSystemModules(const std::string& game_serial) { LOG_INFO(Loader, "Loading {} from game serial file {}", entry.path().string(), game_serial); if (linker->LoadModule(entry.path()) == -1) { - entry.path().string(); + LOG_ERROR(Loader, "Failed to load module: {}", entry.path().string()); } } }