Add a log statement so we can tell that things are starting
Signed-off-by: Ryan Richard <richardry@vmware.com>
This commit is contained in:
parent
4e17853ecf
commit
68d01f97a4
@ -13,5 +13,7 @@ import (
|
||||
)
|
||||
|
||||
func main() {
|
||||
log.Fatal(http.ListenAndServe(":8080", handlers.New()))
|
||||
addr := ":8080"
|
||||
log.Printf("Starting server on %v", addr)
|
||||
log.Fatal(http.ListenAndServe(addr, handlers.New()))
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user