remove info_logger

This commit is contained in:
gabime
2014-03-02 16:36:06 +02:00
parent 2ac214aed8
commit 344b3d2834
2 changed files with 3 additions and 23 deletions

View File

@@ -169,17 +169,3 @@ inline c11log::logger& c11log::get_logger(const std::string& name)
return *(c11log::details::factory::instance().get_logger(name));
}
namespace c11log {
class info_logger {
public:
info_logger (c11log::logger* logger):_logger(logger) {}
template<class T>
details::line_logger& operator<<(const T& msg) {
return _logger->info() << msg;
}
private:
c11log::logger* _logger;
};
}