summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gateways.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/gateways.go b/gateways.go
index c4597a0..a72ea73 100644
--- a/gateways.go
+++ b/gateways.go
@@ -18,6 +18,7 @@ package main
import (
"encoding/json"
"fmt"
+ "log"
"net/http"
)
@@ -90,7 +91,7 @@ func (b *bonafide) listGateways() error {
}
for i := 0; i < len(b.eip.Gateways); i++ {
- fmt.Printf("\t%v\n", b.eip.Gateways[i])
+ log.Printf("\t%v\n", b.eip.Gateways[i])
}
return nil