blob: bcb0ac3709e6d8752cc7932087bd4eedec05e4a1 [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 Breakpoint special attention handler */
9void 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