19 #ifndef MIR_LOGGING_LOGGER_H_
20 #define MIR_LOGGING_LOGGER_H_
42 template<Severity severity>
43 void log(
const std::string& message)
45 static const std::string unknown_component(
"UnknownComponent");
46 log(severity, message, unknown_component);
49 template<Severity severity>
50 void log(
const std::string& message,
const std::string& component)
52 log(severity, message, component);
62 const std::string& message,
63 const std::string& component) = 0;
68 #endif // MIR_LOGGING_LOGGER_H_