vspd: Remove unnecessary dcrd error logging.
The error returned by dcrd.Client() is already very descriptive and does not need extra context.
This commit is contained in:
parent
c4de3d5d95
commit
12e61bab65
@ -111,7 +111,7 @@ func (v *Vspd) Run(ctx context.Context) {
|
|||||||
case <-dcrdTicker.C:
|
case <-dcrdTicker.C:
|
||||||
_, _, err := v.dcrd.Client()
|
_, _, err := v.dcrd.Client()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
v.log.Errorf("dcrd connect error: %v", err)
|
v.log.Error(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Run the update function every time a block connected notification is
|
// Run the update function every time a block connected notification is
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user