Unverified Commit b9cc158e authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Fix #1115

parent e68cf1c9
......@@ -58,7 +58,7 @@ SPDLOG_INLINE void swap(logger &a, logger &b)
a.swap(b);
}
void logger::log(source_loc loc, level::level_enum lvl, const char *msg)
SPDLOG_INLINE void logger::log(source_loc loc, level::level_enum lvl, const char *msg)
{
if (!should_log(lvl))
{
......@@ -231,4 +231,4 @@ SPDLOG_INLINE void logger::err_handler_(const std::string &msg)
fmt::print(stderr, "[*** LOG ERROR ***] [{}] [{}] {}\n", date_buf, name(), msg);
}
}
} // namespace spdlog
\ No newline at end of file
} // namespace spdlog
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