Skip to content

Commit

Permalink
Fix check for invalid listen address
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmintel committed Aug 7, 2018
1 parent e1e37e0 commit 64a6f80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ func start_app(config Config) {
log.Fatal(err)

default:
fmt.Errorf("Listen address %q is not using http or https", config.Listen)
log.Fatalf("Listen address %q is not using http or https", config.Listen)
}
}

Expand Down

0 comments on commit 64a6f80

Please sign in to comment.