From 1c09373b4f7dbc68154c817b4ee44bfa3b3f637c Mon Sep 17 00:00:00 2001 From: ᴜɴᴋɴᴡᴏɴ Date: Thu, 20 Feb 2020 02:25:02 +0800 Subject: log: migrate to unknwon.dev/clog/v2 (#5927) * Add unknwon.dev/clog/v2 * Update all places --- internal/process/manager.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/process') diff --git a/internal/process/manager.go b/internal/process/manager.go index babfceed..274e63df 100644 --- a/internal/process/manager.go +++ b/internal/process/manager.go @@ -12,11 +12,11 @@ import ( "sync" "time" - log "gopkg.in/clog.v1" + log "unknwon.dev/clog/v2" ) var ( - ErrExecTimeout = errors.New("Process execution timeout") + ErrExecTimeout = errors.New("process execution timeout") ) const DEFAULT_TIMEOUT = 60 * time.Second @@ -101,7 +101,7 @@ func ExecDir(timeout time.Duration, dir, desc, cmdName string, args ...string) ( select { case <-time.After(timeout): if errKill := Kill(pid); errKill != nil { - log.Error(2, "Fail to kill timeout process [pid: %d, desc: %s]: %v", pid, desc, errKill) + log.Error("Failed to kill timeout process [pid: %d, desc: %s]: %v", pid, desc, errKill) } <-done return "", ErrExecTimeout.Error(), ErrExecTimeout -- cgit v1.2.3