logger: add page

This commit is contained in:
Agniva De Sarker
2016-11-16 13:18:49 +05:30
parent 587abbcfae
commit ddd08bc426
2 changed files with 46 additions and 0 deletions

23
pages/linux/logger.md Normal file
View File

@@ -0,0 +1,23 @@
# logger
> Add messages to syslog.
- Log a message to syslog:
`logger {{message}}`
- Take input from stdin and log to syslog:
`tail -f {{app.log}} | logger`
- Send the output to a remote syslog server running at a given port. Default port is `syslog`:
`tail -f {{app.log}} | logger --server {{hostname}} --port {{port}}`
- Use a specific tag for every line logged. Default is the name of logged in user:
`tail -f {{app.log}} | logger --tag {{tag}}`
- Log messages with a given priority. Default is `user.notice`. See `man logger` for all priority options:
`tail -f {{app.log}} | logger --priority {{user.warning}}`