~vcs-imports/busybox/trunk

« back to all changes in this revision

Viewing changes to sysklogd/logger.c

  • Committer: Denys Vlasenko
  • Author(s): Christian Franke
  • Date: 2023-11-13 10:32:35 UTC
  • Revision ID: git-v1:a63b60bdd6fa26b867c80d44074118babbae7ffd
Cygwin: regenerate defconfig

Signed-off-by: Christian Franke <christian.franke@t-online.de>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8
8
 */
9
9
//config:config LOGGER
10
 
//config:       bool "logger (6.3 kb)"
 
10
//config:       bool "logger (6.5 kb)"
11
11
//config:       default y
12
12
//config:       select FEATURE_SYSLOG
13
13
//config:       help
21
21
//kbuild:lib-$(CONFIG_LOGGER) += syslogd_and_logger.o
22
22
 
23
23
//usage:#define logger_trivial_usage
24
 
//usage:       "[OPTIONS] [MESSAGE]"
 
24
//usage:       "[-s] [-t TAG] [-p PRIO] [MESSAGE]"
25
25
//usage:#define logger_full_usage "\n\n"
26
26
//usage:       "Write MESSAGE (or stdin) to syslog\n"
27
27
//usage:     "\n        -s      Log to stderr as well as the system log"
28
28
//usage:     "\n        -t TAG  Log using the specified tag (defaults to user name)"
29
 
//usage:     "\n        -p PRIO Priority (numeric or facility.level pair)"
 
29
//usage:     "\n        -p PRIO Priority (number or FACILITY.LEVEL pair)"
30
30
//usage:
31
31
//usage:#define logger_example_usage
32
32
//usage:       "$ logger \"hello\"\n"