mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-29 06:01:21 +00:00
More verbose error log (#2864)
This commit is contained in:
parent
e6a0d098e8
commit
b90e06a37c
@ -54,7 +54,7 @@ RETRY_LOOP:
|
|||||||
if cli.mustConnect {
|
if cli.mustConnect {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
cli.Logger.Error(fmt.Sprintf("abci.grpcClient failed to connect to %v. Retrying...\n", cli.addr))
|
cli.Logger.Error(fmt.Sprintf("abci.grpcClient failed to connect to %v. Retrying...\n", cli.addr), "err", err)
|
||||||
time.Sleep(time.Second * dialRetryIntervalSeconds)
|
time.Sleep(time.Second * dialRetryIntervalSeconds)
|
||||||
continue RETRY_LOOP
|
continue RETRY_LOOP
|
||||||
}
|
}
|
||||||
|
@ -67,7 +67,7 @@ RETRY_LOOP:
|
|||||||
if cli.mustConnect {
|
if cli.mustConnect {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
cli.Logger.Error(fmt.Sprintf("abci.socketClient failed to connect to %v. Retrying...", cli.addr))
|
cli.Logger.Error(fmt.Sprintf("abci.socketClient failed to connect to %v. Retrying...", cli.addr), "err", err)
|
||||||
time.Sleep(time.Second * dialRetryIntervalSeconds)
|
time.Sleep(time.Second * dialRetryIntervalSeconds)
|
||||||
continue RETRY_LOOP
|
continue RETRY_LOOP
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user