mirror of https://github.com/status-im/nim-eth.git
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
This commit is contained in:
parent
2c08626ed8
commit
c67e48be1d
|
@ -261,7 +261,7 @@ proc innerConnect[A](s: UtpSocket[A]): Future[ConnectionResult[A]] {.async.} =
|
||||||
raise exc
|
raise exc
|
||||||
|
|
||||||
proc connect[A](s: UtpSocket[A]): Future[ConnectionResult[A]] =
|
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
|
# Create inner future, to make sure we are installing cancelCallback
|
||||||
# on whole connection future, and not only part of it
|
# on whole connection future, and not only part of it
|
||||||
|
|
Loading…
Reference in New Issue