blob: 50cc97bc5bd3919698ea68895bde3aedc82cf2b6 [file] [log] [blame]
Ben Tyner9ae5ca42020-02-28 13:13:50 -06001#include <attn/logging.hpp>
2
3#include <sstream>
4
5namespace attn
6{
7
8/** @brief Handle TI special attention */
9void 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