blob: ba0add797a00aa39624862d79af2e7d7d2dfaa50 [file] [log] [blame]
Ben Tyner9ae5ca42020-02-28 13:13:50 -06001#include <attn/logging.hpp>
2
3#include <iostream>
4
5namespace attn
6{
7
8/** @brief Log message of type INFO using stdout */
9template <>
10void log<INFO>(const char* i_message)
11{
Ben Tyner9dbab8b2020-03-31 08:55:23 -050012 std::cout << i_message << std::endl;
Ben Tyner9ae5ca42020-02-28 13:13:50 -060013}
14
15} // namespace attn