blob: 28337662e0f3bfdcad59c1bf669526079c68bf4b [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{
12 std::cout << i_message;
13}
14
15} // namespace attn