]> ruderich.org/simon Gitweb - safcm/safcm.git/blob - cmd/safcm-remote/log/logger.go
Move embedded remote helpers to cmd/safcm/
[safcm/safcm.git] / cmd / safcm-remote / log / logger.go
1 // Logging helpers
2
3 // Copyright (C) 2021  Simon Ruderich
4 //
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.
9 //
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.
14 //
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/>.
17
18 package log
19
20 import (
21         "fmt"
22
23         "ruderich.org/simon/safcm"
24 )
25
26 // LogFunc is a helper type to reduce typing.
27 type LogFunc func(level safcm.LogLevel, msg string)
28
29 type Logger struct {
30         fun LogFunc
31 }
32
33 func NewLogger(fun LogFunc) *Logger {
34         return &Logger{
35                 fun: fun,
36         }
37 }
38
39 func (l *Logger) Verbosef(format string, a ...interface{}) {
40         l.log(safcm.LogVerbose, format, a...)
41 }
42 func (l *Logger) Debugf(format string, a ...interface{}) {
43         l.log(safcm.LogDebug, format, a...)
44 }
45 func (l *Logger) Debug2f(format string, a ...interface{}) {
46         l.log(safcm.LogDebug2, format, a...)
47 }
48
49 func (l *Logger) log(level safcm.LogLevel,
50         format string, a ...interface{}) {
51         l.fun(level, fmt.Sprintf(format, a...))
52 }