prune util/log and user logger (#1237)

* prune util/log and user logger

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* plaintext logger

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>

* add newline

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2020-02-23 16:45:20 +03:00
parent cc396d7ce7
commit 1205227bd3

View File

@ -7,8 +7,8 @@ import (
"sync" "sync"
"time" "time"
log "github.com/micro/go-micro/v2/logger"
"github.com/micro/go-micro/v2/registry" "github.com/micro/go-micro/v2/registry"
log "github.com/micro/go-micro/v2/util/log"
) )
// Cache is the registry cache interface // Cache is the registry cache interface
@ -339,7 +339,7 @@ func (c *cache) run() {
c.setStatus(err) c.setStatus(err)
if a > 3 { if a > 3 {
log.Log("rcache: ", err, " backing off ", d) log.Info("rcache: ", err, " backing off ", d)
a = 0 a = 0
} }
@ -362,7 +362,7 @@ func (c *cache) run() {
c.setStatus(err) c.setStatus(err)
if b > 3 { if b > 3 {
log.Log("rcache: ", err, " backing off ", d) log.Info("rcache: ", err, " backing off ", d)
b = 0 b = 0
} }