X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FLogger%2FSyslogTarget.cc;h=6aeec08fb862fdc898325f37a3abb2999b584884;hb=f13780e9e4da7df981d6f6542fbdc714beb34765;hp=dc492477577ab9062a722c8a9dcdd33aa5c49052;hpb=6019c18e7b74d3e91293f35df660a80346ef7a1e;p=senf.git diff --git a/senf/Utils/Logger/SyslogTarget.cc b/senf/Utils/Logger/SyslogTarget.cc index dc49247..6aeec08 100644 --- a/senf/Utils/Logger/SyslogTarget.cc +++ b/senf/Utils/Logger/SyslogTarget.cc @@ -59,25 +59,27 @@ namespace log { prefix_ senf::log::SyslogTarget::RegisterConsole::RegisterConsole() { namespace kw = senf::console::kw; + namespace fty = senf::console::factory; - detail::TargetRegistry::instance().consoleDir().add("syslog-target",&RegisterConsole::create) - .arg("facility", "syslog facility to send messages to. One of\n" - " AUTHPRIV CRON DAEMON FTP KERN LPR MAIL NEWS SYSLOG USER\n" - " UUCP LOCAL0 LOCAL1 LOCAL2 LOCAL3 LOCAL4 LOCAL5 LOCAL6 LOCAL7", - kw::default_value = USER) - .doc("Create new syslog target. Examples:\n" - "\n" - "Create new syslog target\n" - " $ syslog-target\n" - " \n" - "\n" - "In a configuration file, create new syslog target and set some parameters (If\n" - "written on one line, this works at the console too:\n" - " /sys/log/syslog-target LOCAL2 {\n" - " route (IMPORTANT); # route all important messages\n" - " timeFormat \"\"; # use non-formatted time format\n" - " showArea false; # don't show log area\n" - " }\n"); + detail::TargetRegistry::instance().consoleDir() + .add("syslog-target",fty::Command(&RegisterConsole::create) + .arg("facility", "syslog facility to send messages to. One of\n" + " AUTHPRIV CRON DAEMON FTP KERN LPR MAIL NEWS SYSLOG USER\n" + " UUCP LOCAL0 LOCAL1 LOCAL2 LOCAL3 LOCAL4 LOCAL5 LOCAL6 LOCAL7", + kw::default_value = USER) + .doc("Create new syslog target. Examples:\n" + "\n" + "Create new syslog target\n" + " $ syslog-target\n" + " \n" + "\n" + "In a configuration file, create new syslog target and set some parameters (If\n" + "written on one line, this works at the console too:\n" + " /sys/log/syslog-target LOCAL2 {\n" + " route (IMPORTANT); # route all important messages\n" + " timeFormat \"\"; # use non-formatted time format\n" + " showArea false; # don't show log area\n" + " }\n") ); } prefix_ boost::shared_ptr