Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Added http:// to server address in log to make it clickable #994

Merged
merged 2 commits into from
Mar 26, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type App struct {
// interrupt and kill signals and will attempt to stop the application
// gracefully. This will also start the Worker process, unless WorkerOff is enabled.
func (a *App) Serve() error {
logrus.Infof("Starting application at %s", a.Options.Addr)
logrus.Infof("Starting application at http://%s", a.Options.Addr)
server := http.Server{
Handler: a,
}
Expand Down