diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-16 17:54:11 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-06 15:57:04 +0100 |
commit | 17ab6663d5522bf4db3e6cce70352f8ba4379e99 (patch) | |
tree | 172403491a3c57a3da68447adb3e5dabf52a1d04 /lib/apiv1 | |
parent | 8119c1641e88ee5020e380c08119f508c6e24222 (diff) |
Add silly log level support.
Silly logging is enable when:
XDS_LOG_SILLY env var is set
and
log level is debug
Diffstat (limited to 'lib/apiv1')
-rw-r--r-- | lib/apiv1/events.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/apiv1/events.go b/lib/apiv1/events.go index b87486f..8f92ae0 100644 --- a/lib/apiv1/events.go +++ b/lib/apiv1/events.go @@ -112,8 +112,8 @@ func (s *APIService) eventsRegister(c *gin.Context) { Folder: *cfg, } - s.log.Debugf("Event emit %s - ID=%s, Status=%s IsInSync=%v", EventEventType+evType, cfg.ID, - cfg.Status, cfg.IsInSync) + s.log.Debugf("WS Emit %s - Status=%10s, IsInSync=%6v, ID=%s", + EventEventType+evType, cfg.Status, cfg.IsInSync, cfg.ID) if err := (*so).Emit(EventEventType+evType, msg); err != nil { s.log.Errorf("WS Emit Folder StateChanged event : %v", err) |