Commit e7c7bf23 authored by gabi's avatar gabi

added forgotten error fn to logger

parent e76a365b
......@@ -145,6 +145,12 @@ inline c11log::details::line_logger c11log::logger::warn(const Args&... args)
return log(level::WARNING, args...);
}
template <typename... Args>
inline c11log::details::line_logger c11log::logger::error(const Args&... args)
{
return log(level::ERROR, args...);
}
template <typename... Args>
inline c11log::details::line_logger c11log::logger::critical(const Args&... args)
{
......
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