Home
last modified time | relevance | path

Searched refs:BOOST_LOG (Results 1 – 25 of 33) sorted by relevance

12

/third_party/boost/libs/log/example/advanced_usage/
Dmain.cpp77 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()
245BOOST_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/
Dsources_net_connection_chan.cpp62 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()
Dsources_net_connection.cpp62 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()
Dextension_stat_collector.cpp164 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()
Dextension_stat_collector_settings.cpp215 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()
Dexpressions_has_attr_stat_accum.cpp110 BOOST_LOG(lg) << logging::add_value("Change", (int)(change));\
118 BOOST_LOG(lg) << "A regular log record"; in logging_function()
Dsinks_xml_file.cpp140 BOOST_LOG(lg) << "XML log record " << i; in main()
144 BOOST_LOG(lg) << "Special XML characters: &, <, >, \", '"; in main()
Dextension_filter_parser.cpp154 BOOST_LOG(lg) << "Hello, world with coordinates (10, 10)!"; in main()
158BOOST_LOG(lg) << "Hello, world with coordinates (20, 20)!"; // this message will be suppressed by … in main()
Dtutorial_file_manual.cpp43 BOOST_LOG(lg) << "Hello world!"; in main()
Dsinks_debugger.cpp47 BOOST_LOG(lg) << "Hello world!"; in main()
Dtutorial_logging.cpp40 BOOST_LOG(lg) << "Greetings from the global logger!"; in logging_function2()
Dextension_filter_parser_custom_rel.cpp195 BOOST_LOG(lg) << "Hello, world with coordinates (10, 10)!"; in main()
199BOOST_LOG(lg) << "Hello, world with coordinates (50, 50)!"; // this message will be suppressed by … in main()
Dsinks_multifile.cpp60 BOOST_LOG(lg) << "Hello, world!"; in logging_function()
Dsinks_ipc_logger.cpp75 BOOST_LOG(logger) << "Message #" << i; in main()
Dsources_severity.cpp59 BOOST_LOG(error_lg) << "An error level log record (by default)"; in default_severity()
Dextension_formatter_parser.cpp122BOOST_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/
Dmain.cpp94 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/
Dattributes.qbk73 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 …]
Drationale.qbk36 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";
110BOOST_LOG(logger) << logging::add_value("MyInt", 10) << logging::add_value("MyString", "string att…
/third_party/boost/libs/log/example/rotating_file/
Dmain.cpp86 BOOST_LOG(lg) << "Some log record"; in main()
/third_party/boost/libs/log/example/basic_usage/
Dmain.cpp116 BOOST_LOG(lg) << "Hello, World!"; in main()
/third_party/boost/libs/log/example/multiple_files/
Dmain.cpp59 BOOST_LOG(my_logger::get()) << "Log record " << i; in BOOST_LOG_INLINE_GLOBAL_LOGGER_DEFAULT()
/third_party/boost/libs/log/example/multiple_threads/
Dmain.cpp63 BOOST_LOG(test_lg::get()) << "Log record " << i; in BOOST_LOG_INLINE_GLOBAL_LOGGER_DEFAULT()
/third_party/boost/libs/log/example/keywords/
Dmain.cpp120 BOOST_LOG(lg) << "Hello, World!"; in main()
/third_party/boost/libs/log/example/bounded_async_log/
Dmain.cpp65 BOOST_LOG(test_lg::get()) << "Log record " << i; in BOOST_LOG_INLINE_GLOBAL_LOGGER_DEFAULT()

12