// // DebugOutput - shows how to use DebugOutputAppender to write to the windows debug output. // #include #include #include #include int main() { static plog::DebugOutputAppender debugOutputAppender; plog::init(plog::verbose, &debugOutputAppender); PLOGD << "Hello log!"; // short macro PLOG_DEBUG << "Hello log!"; // long macro PLOG(plog::debug) << "Hello log!"; // function-style macro return 0; }