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