aboutsummaryrefslogtreecommitdiff
path: root/weed/util/grace/signal_handling.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/util/grace/signal_handling.go')
-rw-r--r--weed/util/grace/signal_handling.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/util/grace/signal_handling.go b/weed/util/grace/signal_handling.go
index 0fc0f43e1..4e6ef456f 100644
--- a/weed/util/grace/signal_handling.go
+++ b/weed/util/grace/signal_handling.go
@@ -4,7 +4,7 @@
package grace
import (
- "github.com/seaweedfs/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/util/log"
"os"
"os/signal"
"reflect"
@@ -45,7 +45,7 @@ func init() {
} else {
interruptHookLock.RLock()
for _, hook := range interruptHooks {
- glog.V(4).Infof("exec interrupt hook func name:%s", GetFunctionName(hook))
+ log.V(-1).Infof("exec interrupt hook func name:%s", GetFunctionName(hook))
hook()
}
interruptHookLock.RUnlock()