Adjust Service log notice for duplicate stops

This commit is contained in:
Jae Kwon 2016-01-18 13:19:11 -08:00
parent 8dacd4172e
commit 19f5a93cff
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ func (bs *BaseService) Stop() bool {
return true
} else {
if bs.log != nil {
bs.log.Notice(Fmt("Not stopping %v", bs.name), "impl", bs.impl)
bs.log.Notice(Fmt("Stopping %v (ignoring: already stopped)", bs.name), "impl", bs.impl)
}
return false
}