3 // Copyright (C) 2021 Simon Ruderich
5 // This program is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program. If not, see <http://www.gnu.org/licenses/>.
23 "ruderich.org/simon/safcm"
26 // LogFunc is a helper type to reduce typing.
27 type LogFunc func(level safcm.LogLevel, msg string)
33 func NewLogger(fun LogFunc) *Logger {
39 func (l *Logger) Verbosef(format string, a ...interface{}) {
40 l.log(safcm.LogVerbose, format, a...)
42 func (l *Logger) Debugf(format string, a ...interface{}) {
43 l.log(safcm.LogDebug, format, a...)
45 func (l *Logger) Debug2f(format string, a ...interface{}) {
46 l.log(safcm.LogDebug2, format, a...)
49 func (l *Logger) log(level safcm.LogLevel,
50 format string, a ...interface{}) {
51 l.fun(level, fmt.Sprintf(format, a...))