blob: 28337662e0f3bfdcad59c1bf669526079c68bf4b [file] [log] [blame]
#include <attn/logging.hpp>
#include <iostream>
namespace attn
{
/** @brief Log message of type INFO using stdout */
template <>
void log<INFO>(const char* i_message)
{
std::cout << i_message;
}
} // namespace attn