removed the confusing stop() function

This commit is contained in:
gabime
2014-12-21 03:11:40 +02:00
parent c54c51b50d
commit 28da625a6f
7 changed files with 1 additions and 42 deletions

View File

@@ -229,11 +229,6 @@ inline bool spdlog::logger::should_log(spdlog::level::level_enum msg_level) cons
return msg_level >= _level.load();
}
inline void spdlog::logger::stop()
{
_stop();
}
//
// protected virtual called at end of each user log call (if enabled) by the line_logger
//
@@ -253,12 +248,4 @@ inline void spdlog::logger::_set_formatter(formatter_ptr msg_formatter)
_formatter = msg_formatter;
}
inline void spdlog::logger::_stop()
{
set_level(level::off);
}