Public Member Functions | |
route_do_set | set_route () |
route_do_append | append_route () |
Classes | |
class | route |
You can append a route - with append_route(), or set the route with set_route().
Example:
typedef logger< default_, writer::format_write< format_base, destination_base, format_and_write::simple<cache_string>, msg_route::with_route<format_base,destination_base> > > logger_type; logger_type g_l(); g_l()->writer().router().set_route() .fmt( formatter::time() ) .fmt( formatter::append_newline() ) .dest( destination::dbg_window() ) .fmt( formatter::write_idx() ) .dest( destination::cout() ) .clear() .fmt( formatter::write_idx() ) .fmt( formatter::append_newline() ) .fmt( formatter::write_to_file()) ;
format_base | The base class for all formatter classes from your application. See manipulator. | |
destination_base | The base class for all destination classes from your application. See manipulator. |
route_do_set boost::logging::msg_route::with_route< formatter_base, destination_base, lock_resource, formatter_array, destination_array >::set_route | ( | ) | [inline] |
route_do_append boost::logging::msg_route::with_route< formatter_base, destination_base, lock_resource, formatter_array, destination_array >::append_route | ( | ) | [inline] |
appends this route