/third_party/boost/libs/log/example/advanced_usage/ |
D | main.cpp | 77 BOOST_LOG(lg) << "foo is being called"; in foo() 133 BOOST_LOG(lg) << "Hello, World!"; in main() 220 BOOST_LOG(lg) << "Some log line with a counter"; in main() 221 BOOST_LOG(lg) << "Another log line with the counter"; in main() 239 BOOST_LOG(lg) << "Some tagged log line"; in main() 240 BOOST_LOG(lg) << "Another tagged log line"; in main() 244 BOOST_LOG(lg) << "Now the tag is removed"; in main() 245 …BOOST_LOG(lg) << logging::add_value("Tag", "Tagged line") << "Some lines can also be selectively t… in main() 290 BOOST_LOG(slg) << "Some really urgent line"; in main() 297 BOOST_LOG(lg) << "The result of foo is " << foo(lg); in main()
|
/third_party/boost/libs/log/example/doc/ |
D | sources_net_connection_chan.cpp | 62 BOOST_LOG(m_net) << "Connection established"; in on_connected() 68 BOOST_LOG(m_net) << "Connection shut down"; in on_disconnected() 77 BOOST_LOG(m_stat) << logging::add_value("ReceivedSize", size) << "Some data received"; in on_data_received() 82 BOOST_LOG(m_stat) << logging::add_value("SentSize", size) << "Some data sent"; in on_data_sent()
|
D | sources_net_connection.cpp | 62 BOOST_LOG(m_logger) << "Connection shut down"; in on_disconnected() 72 BOOST_LOG(m_logger) << logging::add_value("ReceivedSize", size) << "Some data received"; in on_data_received() 76 BOOST_LOG(m_logger) << logging::add_value("SentSize", size) << "Some data sent"; in on_data_sent()
|
D | extension_stat_collector.cpp | 164 BOOST_LOG(lg) << logging::add_value("Connected", true); in main() 165 BOOST_LOG(lg) << logging::add_value("Sent", 100u); in main() 166 BOOST_LOG(lg) << logging::add_value("Received", 200u); in main()
|
D | extension_stat_collector_settings.cpp | 215 BOOST_LOG(lg) << logging::add_value("Connected", true); in main() 216 BOOST_LOG(lg) << logging::add_value("Sent", 100u); in main() 217 BOOST_LOG(lg) << logging::add_value("Received", 200u); in main()
|
D | expressions_has_attr_stat_accum.cpp | 110 BOOST_LOG(lg) << logging::add_value("Change", (int)(change));\ 118 BOOST_LOG(lg) << "A regular log record"; in logging_function()
|
D | sinks_xml_file.cpp | 140 BOOST_LOG(lg) << "XML log record " << i; in main() 144 BOOST_LOG(lg) << "Special XML characters: &, <, >, \", '"; in main()
|
D | extension_filter_parser.cpp | 154 BOOST_LOG(lg) << "Hello, world with coordinates (10, 10)!"; in main() 158 …BOOST_LOG(lg) << "Hello, world with coordinates (20, 20)!"; // this message will be suppressed by … in main()
|
D | tutorial_file_manual.cpp | 43 BOOST_LOG(lg) << "Hello world!"; in main()
|
D | sinks_debugger.cpp | 47 BOOST_LOG(lg) << "Hello world!"; in main()
|
D | tutorial_logging.cpp | 40 BOOST_LOG(lg) << "Greetings from the global logger!"; in logging_function2()
|
D | extension_filter_parser_custom_rel.cpp | 195 BOOST_LOG(lg) << "Hello, world with coordinates (10, 10)!"; in main() 199 …BOOST_LOG(lg) << "Hello, world with coordinates (50, 50)!"; // this message will be suppressed by … in main()
|
D | sinks_multifile.cpp | 60 BOOST_LOG(lg) << "Hello, world!"; in logging_function()
|
D | sinks_ipc_logger.cpp | 75 BOOST_LOG(logger) << "Message #" << i; in main()
|
D | sources_severity.cpp | 59 BOOST_LOG(error_lg) << "An error level log record (by default)"; in default_severity()
|
D | extension_formatter_parser.cpp | 122 …BOOST_LOG(lg) << logging::add_value("Coordinates", point(10.5f, 20.2f)) << "Hello, world with coor… in main()
|
/third_party/boost/libs/log/example/wide_char/ |
D | main.cpp | 94 BOOST_LOG(lg) << "Hello, World! This is a narrow character message."; in test_narrow_char_logging() 100 BOOST_LOG(lg) << L"Hello, World! This is a wide character message."; in test_wide_char_logging() 104 BOOST_LOG(lg) << national_chars; in test_wide_char_logging()
|
/third_party/boost/libs/log/doc/ |
D | attributes.qbk | 73 BOOST_LOG(lg) << "This record has MyInteger == -5"; 77 BOOST_LOG(lg) << "This record has MyInteger == 100"; 116 BOOST_LOG(lg) << "This record has MyInteger1 == 200"; 119 BOOST_LOG(lg) << "This record has MyInteger2 == 300"; 148 BOOST_LOG(lg) << "This record has LineCounter == 0, CountDown == 100"; 149 BOOST_LOG(lg) << "This record has LineCounter == 1, CountDown == 95"; 150 BOOST_LOG(lg) << "This record has LineCounter == 2, CountDown == 90"; 173 BOOST_LOG(lg) << "This record has a time stamp"; 193 BOOST_LOG(m_logger) << "Connection established"; 198 BOOST_LOG(m_logger) << "Connection closed"; [all …]
|
D | rationale.qbk | 36 BOOST_LOG(get_my_logger()) << "We're in foo section"; 44 BOOST_LOG(get_my_logger()) << "We're in main section"; 49 BOOST_LOG(get_my_logger()) << "We're in main section again"; 61 BOOST_LOG(get_my_logger()) << "We're in thread1"; 67 BOOST_LOG(get_my_logger()) << "We're in thread2"; 74 BOOST_LOG(get_my_logger()) << "We're in main"; 83 BOOST_LOG(get_my_logger()) << "We're in main again"; 110 …BOOST_LOG(logger) << logging::add_value("MyInt", 10) << logging::add_value("MyString", "string att…
|
/third_party/boost/libs/log/example/rotating_file/ |
D | main.cpp | 86 BOOST_LOG(lg) << "Some log record"; in main()
|
/third_party/boost/libs/log/example/basic_usage/ |
D | main.cpp | 116 BOOST_LOG(lg) << "Hello, World!"; in main()
|
/third_party/boost/libs/log/example/multiple_files/ |
D | main.cpp | 59 BOOST_LOG(my_logger::get()) << "Log record " << i; in BOOST_LOG_INLINE_GLOBAL_LOGGER_DEFAULT()
|
/third_party/boost/libs/log/example/multiple_threads/ |
D | main.cpp | 63 BOOST_LOG(test_lg::get()) << "Log record " << i; in BOOST_LOG_INLINE_GLOBAL_LOGGER_DEFAULT()
|
/third_party/boost/libs/log/example/keywords/ |
D | main.cpp | 120 BOOST_LOG(lg) << "Hello, World!"; in main()
|
/third_party/boost/libs/log/example/bounded_async_log/ |
D | main.cpp | 65 BOOST_LOG(test_lg::get()) << "Log record " << i; in BOOST_LOG_INLINE_GLOBAL_LOGGER_DEFAULT()
|