summaryrefslogtreecommitdiff
path: root/sd_daemon/log_util.go
blob: 93e08976eb930ff0c129a22e7a6be474ca4628f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// ./log_util.go.gen
// Code generated by the above command; DO NOT EDIT.

package sd_daemon

import "log/syslog"

// Emerg writes a message with priority syslog.LOG_EMERG to the log.
func (l *Logger) Emerg(msg string) error {
	_, err := l.LogString(syslog.LOG_EMERG, msg)
	return err
}

// Alert writes a message with priority syslog.LOG_ALERT to the log.
func (l *Logger) Alert(msg string) error {
	_, err := l.LogString(syslog.LOG_ALERT, msg)
	return err
}

// Crit writes a message with priority syslog.LOG_CRIT to the log.
func (l *Logger) Crit(msg string) error {
	_, err := l.LogString(syslog.LOG_CRIT, msg)
	return err
}

// Err writes a message with priority syslog.LOG_ERR to the log.
func (l *Logger) Err(msg string) error {
	_, err := l.LogString(syslog.LOG_ERR, msg)
	return err
}

// Warning writes a message with priority syslog.LOG_WARNING to the log.
func (l *Logger) Warning(msg string) error {
	_, err := l.LogString(syslog.LOG_WARNING, msg)
	return err
}

// Notice writes a message with priority syslog.LOG_NOTICE to the log.
func (l *Logger) Notice(msg string) error {
	_, err := l.LogString(syslog.LOG_NOTICE, msg)
	return err
}

// Info writes a message with priority syslog.LOG_INFO to the log.
func (l *Logger) Info(msg string) error {
	_, err := l.LogString(syslog.LOG_INFO, msg)
	return err
}

// Debug writes a message with priority syslog.LOG_DEBUG to the log.
func (l *Logger) Debug(msg string) error {
	_, err := l.LogString(syslog.LOG_DEBUG, msg)
	return err
}