mirror of
https://github.com/golang/go
synced 2024-11-11 22:50:22 -07:00
log/syslog: add Alert method
Alert logs a message using the LOG_ALERT priority. Fixes #2325. R=mikioh.mikioh, rsc CC=golang-dev https://golang.org/cl/5504058
This commit is contained in:
parent
98b90475ac
commit
f71c03af90
@ -93,13 +93,19 @@ func (w *Writer) Emerg(m string) (err error) {
|
||||
return err
|
||||
}
|
||||
|
||||
// Alert logs a message using the LOG_ALERT priority.
|
||||
func (w *Writer) Alert(m string) (err error) {
|
||||
_, err = w.writeString(LOG_ALERT, m)
|
||||
return err
|
||||
}
|
||||
|
||||
// Crit logs a message using the LOG_CRIT priority.
|
||||
func (w *Writer) Crit(m string) (err error) {
|
||||
_, err = w.writeString(LOG_CRIT, m)
|
||||
return err
|
||||
}
|
||||
|
||||
// ERR logs a message using the LOG_ERR priority.
|
||||
// Err logs a message using the LOG_ERR priority.
|
||||
func (w *Writer) Err(m string) (err error) {
|
||||
_, err = w.writeString(LOG_ERR, m)
|
||||
return err
|
||||
|
Loading…
Reference in New Issue
Block a user