File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -222,19 +222,19 @@ func main() {
222
222
// Logging interface
223
223
224
224
func (h * hems ) Trace (args ... interface {}) {
225
- // h.print("TRACE", args...)
225
+ h .print ("TRACE" , args ... )
226
226
}
227
227
228
228
func (h * hems ) Tracef (format string , args ... interface {}) {
229
- // h.printFormat("TRACE", format, args...)
229
+ h .printFormat ("TRACE" , format , args ... )
230
230
}
231
231
232
232
func (h * hems ) Debug (args ... interface {}) {
233
- // h.print("DEBUG", args...)
233
+ h .print ("DEBUG" , args ... )
234
234
}
235
235
236
236
func (h * hems ) Debugf (format string , args ... interface {}) {
237
- // h.printFormat("DEBUG", format, args...)
237
+ h .printFormat ("DEBUG" , format , args ... )
238
238
}
239
239
240
240
func (h * hems ) Info (args ... interface {}) {
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ func (s *Service) Setup() error {
84
84
s .localService .SetShipID (sd .Identifier ())
85
85
s .localService .SetDeviceType (string (sd .DeviceType ()))
86
86
87
- logging .Log ().Info ("Local SKI: " , ski )
87
+ logging .Log ().Info ("Local SKI:" , ski )
88
88
89
89
vendor := sd .VendorCode ()
90
90
if vendor == "" {
You can’t perform that action at this time.
0 commit comments