diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-03-04 00:53:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-04 00:53:30 +0800 |
commit | 07c216d603d7b366c177295761280acc706a9382 (patch) | |
tree | 8e46ff5081d126f6e99d5849cb7dad7f64aefdbd /les/backend.go | |
parent | 1a00e39539f2bd7f59430062faa42bbc28cb89d2 (diff) | |
parent | e7030c4bf59e8e148822c50ae1a5896c604c38c1 (diff) | |
download | dexon-07c216d603d7b366c177295761280acc706a9382.tar dexon-07c216d603d7b366c177295761280acc706a9382.tar.gz dexon-07c216d603d7b366c177295761280acc706a9382.tar.bz2 dexon-07c216d603d7b366c177295761280acc706a9382.tar.lz dexon-07c216d603d7b366c177295761280acc706a9382.tar.xz dexon-07c216d603d7b366c177295761280acc706a9382.tar.zst dexon-07c216d603d7b366c177295761280acc706a9382.zip |
Merge pull request #3739 from karalabe/logger-updates-4
all: update light logs (and a few others) to the new model
Diffstat (limited to 'les/backend.go')
-rw-r--r-- | les/backend.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/les/backend.go b/les/backend.go index 94563c29f..e96fc9df0 100644 --- a/les/backend.go +++ b/les/backend.go @@ -187,7 +187,7 @@ func (s *LightEthereum) Protocols() []p2p.Protocol { // Start implements node.Service, starting all internal goroutines needed by the // Ethereum protocol implementation. func (s *LightEthereum) Start(srvr *p2p.Server) error { - log.Info(fmt.Sprintf("WARNING: light client mode is an experimental feature")) + log.Warn("Light client mode is an experimental feature") s.netRPCService = ethapi.NewPublicNetAPI(srvr, s.netVersionId) s.protocolManager.Start(srvr) return nil |