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 Breakpoint special attention handler */ | ||||
9 | void bpHandler() | ||||
10 | { | ||||
11 | // trace message | ||||
12 | std::stringstream ss; | ||||
13 | ss << "breakpoint handler"; | ||||
14 | log<level::INFO>(ss.str().c_str()); | ||||
15 | } | ||||
16 | |||||
17 | } // namespace attn |