1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2025-02-17 09:35:49 +00:00

Buildfix in release

This commit is contained in:
King_DuckZ 2017-05-04 19:41:18 +01:00
parent 7646a04c51
commit bcb800ffef

View file

@ -51,7 +51,9 @@ namespace tawashi {
} }
inline const boost::string_ref& SettingsBag::at (boost::string_ref parIndex) const { inline const boost::string_ref& SettingsBag::at (boost::string_ref parIndex) const {
#if defined(SPDLOG_DEBUG_ON)
SPDLOG_DEBUG(spdlog::get("statuslog"), "Retrieving setting \"{}\"", std::string(parIndex.data(), parIndex.size())); SPDLOG_DEBUG(spdlog::get("statuslog"), "Retrieving setting \"{}\"", std::string(parIndex.data(), parIndex.size()));
#endif
return (*this)[parIndex]; return (*this)[parIndex];
} }
} //namespace tawashi } //namespace tawashi