blob: bcb0ac3709e6d8752cc7932087bd4eedec05e4a1 [file] [log] [blame]
#include <attn/logging.hpp>
#include <sstream>
namespace attn
{
/** @brief Breakpoint special attention handler */
void bpHandler()
{
// trace message
std::stringstream ss;
ss << "breakpoint handler";
log<level::INFO>(ss.str().c_str());
}
} // namespace attn