X-Git-Url: https://ruderich.org/simon/gitweb/?p=safcm%2Fsafcm.git;a=blobdiff_plain;f=cmd%2Fsafcm-remote%2Flog%2Flogger.go;h=f358b75af7bad9cf35f47c4a1abd1a28c2311483;hp=b9fbcf36a03d4f8074a5c932528004973bb41050;hb=e0d1ceb383e5672de1a414f192eb2849a1887934;hpb=35c082709bb4fae99e61debf65e146507f265fcc diff --git a/cmd/safcm-remote/log/logger.go b/cmd/safcm-remote/log/logger.go index b9fbcf3..f358b75 100644 --- a/cmd/safcm-remote/log/logger.go +++ b/cmd/safcm-remote/log/logger.go @@ -27,12 +27,12 @@ import ( type LogFunc func(level safcm.LogLevel, msg string) type Logger struct { - fun LogFunc + fun LogFunc } func NewLogger(fun LogFunc) *Logger { return &Logger{ - fun: fun, + fun: fun, } }