The last example used LOG_INFO, but the message itself said error.

Change to LOG_ERR to be less confusing.

PR:			216756
Submitted by:		Thomas Cort (linuxgeek@gmail.com)
Reviewed by:		noone (after 2 months)
Differential Revision:	https://reviews.freebsd.org/D11824
This commit is contained in:
bcr 2017-11-05 18:24:31 +00:00
parent 3e72c3f138
commit f30acbe8e0

View File

@ -28,7 +28,7 @@
.\" @(#)syslog.3 8.1 (Berkeley) 6/4/93
.\" $FreeBSD$
.\"
.Dd July 21, 2015
.Dd November 5, 2017
.Dt SYSLOG 3
.Os
.Sh NAME
@ -270,7 +270,7 @@ setlogmask(LOG_UPTO(LOG_ERR));
syslog(LOG_INFO, "Connection from host %d", CallingHost);
syslog(LOG_INFO|LOG_LOCAL2, "foobar error: %m");
syslog(LOG_ERR|LOG_LOCAL2, "foobar error: %m");
.Ed
.Sh SEE ALSO
.Xr logger 1 ,