diff --git a/src/tawashi_implem/response.cpp b/src/tawashi_implem/response.cpp index fe32365..7f8bb86 100644 --- a/src/tawashi_implem/response.cpp +++ b/src/tawashi_implem/response.cpp @@ -78,7 +78,7 @@ namespace tawashi { boost::optional load_whole_file (const std::string& parWebsiteRoot, const char* parSuffix, const boost::string_ref& parName, bool parThrow) { std::ostringstream oss; oss << parWebsiteRoot << parName << parSuffix; - spdlog::get("statuslog")->debug("Trying to load \"{}\"", oss.str()); + spdlog::get("statuslog")->info("Trying to load \"{}\"", oss.str()); std::ifstream if_mstch(oss.str(), std::ios::binary | std::ios::in); if (not if_mstch) {