Commit 6a83c344 authored by gabime's avatar gabime

logger.h

parent 4189a406
......@@ -16,7 +16,8 @@ debug: example.cpp
clean:
rm -f *.txt $(OUTBIN) $(OUTBIN)-debug
rebuild: clean all
rebuild-debug: clean debug
......
......@@ -103,7 +103,7 @@ inline c11log::logger::logger(sinks_init_list sinks_list) :
inline c11log::details::line_logger c11log::logger::log(c11log::level::level_enum msg_level)
{
return details::line_logger(this, new_log_msg, msg_level >= msg_level);
return details::line_logger(this, msg_level, msg_level >= _atomic_level);
}
inline c11log::details::line_logger c11log::logger::debug()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment