1package sysdjournald
2
3const (
4	// EmergPrefix is the string to prefix in Emergency for systemd-journald
5	EmergPrefix = "<0>"
6	// AlertPrefix is the string to prefix in Alert for systemd-journald
7	AlertPrefix = "<1>"
8	// CritPrefix is the string to prefix in Critical for systemd-journald
9	CritPrefix = "<2>"
10	// ErrPrefix is the string to prefix in Error for systemd-journald
11	ErrPrefix = "<3>"
12	// WarningPrefix is the string to prefix in Warning for systemd-journald
13	WarningPrefix = "<4>"
14	// NoticePrefix is the string to prefix in Notice for systemd-journald
15	NoticePrefix = "<5>"
16	// InfoPrefix is the string to prefix in Info for systemd-journald
17	InfoPrefix = "<6>"
18	// DebugPrefix is the string to prefix in Debug for systemd-journald
19	DebugPrefix = "<7>"
20)
21