Browse Source

service: start/stop logs are info, ignored are debug

pull/1842/head
Ethan Buchman 9 years ago
parent
commit
9364accf1f
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      service.go

+ 3
- 3
service.go View File

@ -84,14 +84,14 @@ func (bs *BaseService) Start() (bool, error) {
return false, nil
} else {
if bs.log != nil {
bs.log.Notice(Fmt("Starting %v", bs.name), "impl", bs.impl)
bs.log.Info(Fmt("Starting %v", bs.name), "impl", bs.impl)
}
}
err := bs.impl.OnStart()
return true, err
} else {
if bs.log != nil {
bs.log.Info(Fmt("Not starting %v -- already started", bs.name), "impl", bs.impl)
bs.log.Debug(Fmt("Not starting %v -- already started", bs.name), "impl", bs.impl)
}
return false, nil
}
@ -104,7 +104,7 @@ func (bs *BaseService) OnStart() error { return nil }
func (bs *BaseService) Stop() bool {
if atomic.CompareAndSwapUint32(&bs.stopped, 0, 1) {
if bs.log != nil {
bs.log.Notice(Fmt("Stopping %v", bs.name), "impl", bs.impl)
bs.log.Info(Fmt("Stopping %v", bs.name), "impl", bs.impl)
}
bs.impl.OnStop()
return true


Loading…
Cancel
Save