Skip to content

Commit

Permalink
log webadmin url on startup (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielchalef authored Sep 19, 2023
1 parent f0a4771 commit bbee273
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/zep/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ func run() {
srv := server.Create(appState)

log.Infof("Listening on: %s", srv.Addr)
if cfg.Server.WebEnabled {
log.Infof("Web UI available at: %s", srv.Addr+"/admin")
}
err = srv.ListenAndServe()
if err != nil {
log.Fatal(err)
Expand Down

0 comments on commit bbee273

Please sign in to comment.