From c67e48be1d445c4ee6319353fdea2661a7e6557a Mon Sep 17 00:00:00 2001 From: Kim De Mey Date: Mon, 4 Jul 2022 12:13:46 +0200 Subject: [PATCH] Change info log to debug in uTP router connect (#517) These uTP logs are common and should be under debug, else they spam on application level. Probably accidentally changed in https://github.com/status-im/nim-eth/pull/508 --- eth/utp/utp_router.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/utp/utp_router.nim b/eth/utp/utp_router.nim index 4c106e5..7fcf6c3 100644 --- a/eth/utp/utp_router.nim +++ b/eth/utp/utp_router.nim @@ -261,7 +261,7 @@ proc innerConnect[A](s: UtpSocket[A]): Future[ConnectionResult[A]] {.async.} = raise exc proc connect[A](s: UtpSocket[A]): Future[ConnectionResult[A]] = - info "Initiating connection", dst = s.socketKey + debug "Initiating connection", dst = s.socketKey # Create inner future, to make sure we are installing cancelCallback # on whole connection future, and not only part of it