logger.h
This commit is contained in:
parent
4189a406f4
commit
6a83c34426
@ -17,6 +17,7 @@ debug: example.cpp
|
|||||||
clean:
|
clean:
|
||||||
rm -f *.txt $(OUTBIN) $(OUTBIN)-debug
|
rm -f *.txt $(OUTBIN) $(OUTBIN)-debug
|
||||||
|
|
||||||
|
|
||||||
rebuild: clean all
|
rebuild: clean all
|
||||||
rebuild-debug: clean debug
|
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)
|
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()
|
inline c11log::details::line_logger c11log::logger::debug()
|
||||||
|
Loading…
Reference in New Issue
Block a user