diff --git a/src/utils/string_utils.hpp b/src/utils/string_utils.hpp index 19c238368..355dfa841 100644 --- a/src/utils/string_utils.hpp +++ b/src/utils/string_utils.hpp @@ -74,15 +74,12 @@ namespace StringUtils } // toString template // ------------------------------------------------------------------------ - /** Specialisiation for bools to return 'true' or 'false'/ - */ + /** Specialisiation for bools to return 'true' or 'false'*/ inline std::string toString(bool &b) { - Log::info("string_utils","toString(bool) called"); return (b ? "true" : "false"); } // toString(bool) - // ------------------------------------------------------------------------ template irr::core::stringw toWString (const T& any)