Skip to content

Commit 49921bb

Browse files
committed
[feature] Add log message stating that host is being auto detected
1 parent 7d61637 commit 49921bb

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

cmd/ssl-auto-ref-client/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ func main() {
3030
privateKey = client.LoadPrivateKey(*privateKeyLocation)
3131

3232
if *autoDetectAddress {
33+
log.Print("Trying to detect host based on incoming referee messages...")
3334
host := client.DetectHost(*udpAddress)
3435
if host != "" {
3536
log.Print("Detected game-controller host: ", host)

cmd/ssl-team-client/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ func main() {
3131
privateKey = client.LoadPrivateKey(*privateKeyLocation)
3232

3333
if *autoDetectAddress {
34+
log.Print("Trying to detect host based on incoming referee messages...")
3435
host := client.DetectHost(*udpAddress)
3536
if host != "" {
3637
log.Print("Detected game-controller host: ", host)

0 commit comments

Comments
 (0)