1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 15:29:42 +02:00

feat(backend): add a simple log message to indicate portainer startup (#320)

This commit is contained in:
Anthony Lapenna 2016-11-04 16:52:02 +13:00 committed by GitHub
parent c1713e0d01
commit 6fc25691bd

View file

@ -33,6 +33,7 @@ type (
func (a *api) run(settings *Settings) {
handler := a.newHandler(settings)
log.Printf("Starting portainer on %s", a.bindAddress)
if err := http.ListenAndServe(a.bindAddress, handler); err != nil {
log.Fatal(err)
}