[Ilugc] One Day One GNU/Linux Command (LOGGER)

  • From: sbharathi@xxxxxxxxxxxxx (Bharathi Subramanian)
  • Date: Wed Oct 15 10:25:53 2008

One Day One GNU/Linux Command
=============================

logger -- Makes entries in the system log file.

Summary:

Logger is a CLI to the system log [syslog] module. It can be used to
makes entries in the system log from the shell scripts. By default,
messages will be logged in /var/log/messages.

Example:

$ logger MyLog1 -- Log the message in syslog.

$ logger -i MyLog2 -- Log the message with PID.

$ logger -s MyLog3 -- Log the message in stderr and syslog.

$ logger -t MYTAG MyLog4 -- Log the message with specified Tag.

$ logger -p user.panic MyLog5 -- Log the message with priority.

Read the man page for more Priority Facility and Level details.

Read: man logger

HTH :)
--
Bharathi S


Other related posts: