Ben Tyner | 9ae5ca4 | 2020-02-28 13:13:50 -0600 | [diff] [blame] | 1 | #include <attn/logging.hpp> |
2 | |||||
3 | #include <iostream> | ||||
4 | |||||
5 | namespace attn | ||||
6 | { | ||||
7 | |||||
8 | /** @brief Log message of type INFO using stdout */ | ||||
9 | template <> | ||||
10 | void log<INFO>(const char* i_message) | ||||
11 | { | ||||
Ben Tyner | 9dbab8b | 2020-03-31 08:55:23 -0500 | [diff] [blame^] | 12 | std::cout << i_message << std::endl; |
Ben Tyner | 9ae5ca4 | 2020-02-28 13:13:50 -0600 | [diff] [blame] | 13 | } |
14 | |||||
15 | } // namespace attn |