blob: 423e9ca6ac6fc2206bfcee7372400ce0f037042b [file] [log] [blame]
Ben Tyner9ae5ca42020-02-28 13:13:50 -06001#include <logging.hpp>
2#include <phosphor-logging/log.hpp>
3
4namespace attn
5{
6
7/** @brief Log message of type INFO using phosphor logging */
8template <>
9void log<INFO>(const char* i_message)
10{
11 phosphor::logging::log<phosphor::logging::level::INFO>(i_message);
12}
13
14} // namespace attn