diff --git a/cmd/hubserver/main.go b/cmd/hubserver/main.go index b75baa0..e2d2006 100644 --- a/cmd/hubserver/main.go +++ b/cmd/hubserver/main.go @@ -95,5 +95,5 @@ func (handler *subscriptionHandler) ServeHTTP(w http.ResponseWriter, r *http.Req func main() { http.Handle("/", &subscriptionHandler{}) - tlog.Fatal(http.ListenAndServe(":80", nil)) + log.Fatal(http.ListenAndServe(":80", nil)) }