From 30f6420eb9b59e5e377915cbf150668cc9ce355e Mon Sep 17 00:00:00 2001 From: Ivan Vandot Date: Fri, 12 Feb 2021 10:11:50 +0100 Subject: [PATCH] fix logs line --- tokenexporter/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokenexporter/main.go b/tokenexporter/main.go index 16c9a3e..bc0965c 100644 --- a/tokenexporter/main.go +++ b/tokenexporter/main.go @@ -237,7 +237,7 @@ func main() { } }() - fmt.Printf("ETHexporter has started on port %v using Geth server: %v\n", port, gethUrl) + fmt.Printf("TOKENexporter has started on port %v using Geth server: %v\n", port, gethUrl) http.HandleFunc("/metrics", MetricsHttp) panic(http.ListenAndServe("0.0.0.0:"+port, nil)) }