From 34c23659e98ff696e4a2cd909cc1e8e07a3af65d Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Mon, 15 May 2017 23:45:13 +0100 Subject: [PATCH] Log files that mustache is trying to open as info. --- src/tawashi_implem/response.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {