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:
Kim De Mey 2022-07-04 12:13:46 +02:00 committed by GitHub
parent 2c08626ed8
commit c67e48be1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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