aboutsummaryrefslogtreecommitdiff
path: root/weed/util/http/http_global_client_init.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/util/http/http_global_client_init.go')
-rw-r--r--weed/util/http/http_global_client_init.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/util/http/http_global_client_init.go b/weed/util/http/http_global_client_init.go
index 0dcb05cfd..d4f4d752c 100644
--- a/weed/util/http/http_global_client_init.go
+++ b/weed/util/http/http_global_client_init.go
@@ -1,7 +1,7 @@
package http
import (
- "github.com/seaweedfs/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/util/log"
util_http_client "github.com/seaweedfs/seaweedfs/weed/util/http/client"
)
@@ -22,6 +22,6 @@ func InitGlobalHttpClient() {
globalHttpClient, err = NewGlobalHttpClient()
if err != nil {
- glog.Fatalf("error init global http client: %v", err)
+ log.Fatalf("error init global http client: %v", err)
}
}