diff --git a/cmd/hems/main.go b/cmd/hems/main.go index 9d825a85..ea743936 100644 --- a/cmd/hems/main.go +++ b/cmd/hems/main.go @@ -222,19 +222,19 @@ func main() { // Logging interface func (h *hems) Trace(args ...interface{}) { - // h.print("TRACE", args...) + h.print("TRACE", args...) } func (h *hems) Tracef(format string, args ...interface{}) { - // h.printFormat("TRACE", format, args...) + h.printFormat("TRACE", format, args...) } func (h *hems) Debug(args ...interface{}) { - // h.print("DEBUG", args...) + h.print("DEBUG", args...) } func (h *hems) Debugf(format string, args ...interface{}) { - // h.printFormat("DEBUG", format, args...) + h.printFormat("DEBUG", format, args...) } func (h *hems) Info(args ...interface{}) { diff --git a/service/service.go b/service/service.go index 792952cb..de7b767f 100644 --- a/service/service.go +++ b/service/service.go @@ -84,7 +84,7 @@ func (s *Service) Setup() error { s.localService.SetShipID(sd.Identifier()) s.localService.SetDeviceType(string(sd.DeviceType())) - logging.Log().Info("Local SKI: ", ski) + logging.Log().Info("Local SKI:", ski) vendor := sd.VendorCode() if vendor == "" {