From c15a26c57c9a15ad25a172f6016221e3314d6c40 Mon Sep 17 00:00:00 2001 From: parmmarrushabh Date: Wed, 24 Oct 2018 14:14:58 +0530 Subject: [PATCH] omit ethstats weird warning msg --- ethstats/ethstats.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethstats/ethstats.go b/ethstats/ethstats.go index ae7e252654..7587afb4f7 100644 --- a/ethstats/ethstats.go +++ b/ethstats/ethstats.go @@ -315,7 +315,7 @@ func (s *Service) readLoop(conn *websocket.Conn) { // Make sure the request is valid and doesn't crash us request, ok := msg["emit"][1].(map[string]interface{}) if !ok { - log.Warn("Invalid stats history request", "msg", msg["emit"][1]) + log.Debug("Invalid stats history request", "msg", msg["emit"][1]) s.histCh <- nil continue // Ethstats sometime sends invalid history requests, ignore those }