diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-18 23:17:04 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-05-18 23:19:43 +0200 |
commit | a52a4ddc7662b8a4d0b8a1fd7be88742d1379691 (patch) | |
tree | 8ebc560024f58489855eb2beac858183ad3e8e6d /lib/webserver | |
parent | 4f8e078afa1e8152789bf8009bcf6f794bda18cc (diff) |
Added prints on startup
Diffstat (limited to 'lib/webserver')
-rw-r--r-- | lib/webserver/server.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/webserver/server.go b/lib/webserver/server.go index 0905c77..774195c 100644 --- a/lib/webserver/server.go +++ b/lib/webserver/server.go @@ -1,6 +1,7 @@ package webserver import ( + "fmt" "net/http" "os" @@ -113,6 +114,7 @@ func (s *Server) Serve() error { // Serve in the background serveError := make(chan error, 1) go func() { + fmt.Printf("Web Server running on localhost:%s ...\n", s.cfg.HTTPPort) serveError <- http.ListenAndServe(":"+s.cfg.HTTPPort, s.router) }() |