Skip to content

Commit 2277cfc

Browse files
arschlesAaron Schlesinger
authored andcommitted
fix(boot.go): use correct format string
1 parent 0b435c1 commit 2277cfc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

boot.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func main() {
3838
}
3939
log.Info("starting fetcher on port %d", cnf.FetcherPort)
4040
go fetcher.Serve(cnf.FetcherPort)
41-
log.Info("starting SSH server on %s:%s", cnf.SSHHostIP, cnf.SSHHostPort)
41+
log.Info("starting SSH server on %s:%d", cnf.SSHHostIP, cnf.SSHHostPort)
4242
os.Exit(pkg.Run(cnf.SSHHostIP, cnf.SSHHostPort, "boot"))
4343
},
4444
},

0 commit comments

Comments
 (0)