| Ben Tyner | 9ae5ca4 | 2020-02-28 13:13:50 -0600 | [diff] [blame^] | 1 | #include <attn/logging.hpp> | 
| 2 | |||||
| 3 | #include <sstream> | ||||
| 4 | |||||
| 5 | namespace attn | ||||
| 6 | { | ||||
| 7 | |||||
| 8 | /** @brief Handle TI special attention */ | ||||
| 9 | void tiHandler() | ||||
| 10 | { | ||||
| 11 | // trace message | ||||
| 12 | std::stringstream ss; | ||||
| 13 | ss << "TI handler" << std::endl; | ||||
| 14 | log<level::INFO>(ss.str().c_str()); | ||||
| 15 | } | ||||
| 16 | |||||
| 17 | } // namespace attn | ||||