From 02022e356aab724d17b8cc2e4e035ef49b6099af Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Tue, 2 Feb 2016 16:19:46 -0500 Subject: [PATCH] make ignore already stopped service Debug --- service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service.go b/service.go index 1d230324..7ecb1687 100644 --- a/service.go +++ b/service.go @@ -110,7 +110,7 @@ func (bs *BaseService) Stop() bool { return true } else { if bs.log != nil { - bs.log.Notice(Fmt("Stopping %v (ignoring: already stopped)", bs.name), "impl", bs.impl) + bs.log.Debug(Fmt("Stopping %v (ignoring: already stopped)", bs.name), "impl", bs.impl) } return false }