Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
jpillora committed Jul 26, 2022
1 parent 83672f4 commit c9ea309
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 @@ -15,7 +15,7 @@ var version = "0.0.0-src"
func main() {
c := handler.DefaultConfig
opts.New(&c).Repo("github.com/jpillora/installer").Version(version).Parse()
log.Printf("default user is '%s', github token set: %v, listening on %d...", c.User, c.Token != "", c.Port)
log.Printf("default user is '%s', github token set: %v", c.User, c.Token != "")
l, err := net.Listen("tcp4", "0.0.0.0:"+strconv.Itoa(c.Port))
if err != nil {
log.Fatal(err)
Expand Down

0 comments on commit c9ea309

Please sign in to comment.