summaryrefslogtreecommitdiff
path: root/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'server.go')
-rw-r--r--server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server.go b/server.go
index f565636..ff581e3 100644
--- a/server.go
+++ b/server.go
@@ -21,6 +21,6 @@ func runServer() {
setupRoutes()
address := config.Http.Host + ":" + config.Http.Port
- log.Println("Binding to 'http://" + address)
+ log.Println("Serving content at 'http://" + address + "'.")
log.Fatal(http.ListenAndServe(address, nil))
}