Skip to content

Commit

Permalink
Add client URLs to connection logs
Browse files Browse the repository at this point in the history
  • Loading branch information
wizeguyy committed Jan 25, 2023
1 parent 5b6b627 commit 1c8023c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quaiclient/quaiclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func DialContext(ctx context.Context, rawurl string) (*Client, error) {
}

// should only get here if the ffmpeg record stream process dies
log.Warn("Attempting to connect to go-quai node. Waiting and retrying...", "attempts", attempts, "delay", delaySecs)
log.Warn("Attempting to connect to go-quai node. Waiting and retrying...", "attempts", attempts, "delay", delaySecs, "url", rawurl)

time.Sleep(time.Duration(delaySecs) * time.Second)
}
Expand Down

0 comments on commit 1c8023c

Please sign in to comment.