From a3f219469cb142aa5d81fa024a817ccd5c35e75d Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Wed, 22 Jun 2022 22:50:14 -0700 Subject: [PATCH] fix log level on DOL file message --- src/FunctionCompiler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FunctionCompiler.cc b/src/FunctionCompiler.cc index 51b966f3..7abd9ac4 100644 --- a/src/FunctionCompiler.cc +++ b/src/FunctionCompiler.cc @@ -212,7 +212,7 @@ DOLFileIndex::DOLFileIndex(const string& directory) { this->name_to_file.emplace(dol->name, dol); this->item_id_to_file.emplace_back(dol); - log(WARNING, "Loaded DOL file %s", filename.c_str()); + log(INFO, "Loaded DOL file %s", filename.c_str()); } catch (const exception& e) { log(WARNING, "Failed to load DOL file %s: %s", filename.c_str(), e.what());