We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9573e82 commit 3e830b8Copy full SHA for 3e830b8
internal/svcctl/svcctl.go
@@ -139,8 +139,10 @@ func LogFileName(ipComm IPCommunicator) (string, error) {
139
func StopServer(ipComm IPCommunicator) error {
140
_, err := LocateHTTP(ipComm)
141
if err != nil {
142
+ logging.Debug("service is not running")
143
return nil // service is not up and running, so nothing to do
144
}
145
+ logging.Debug("service is running")
146
147
ctx, cancel := context.WithTimeout(context.Background(), commonTimeout)
148
defer cancel()
0 commit comments