From 649555b223d340396c4c264f47d07160d444a8a5 Mon Sep 17 00:00:00 2001 From: chrislu Date: Sat, 20 Aug 2022 23:34:07 -0700 Subject: [PATCH] adjust log --- weed/operation/upload_content.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/operation/upload_content.go b/weed/operation/upload_content.go index c5d2ce7c9..12f4ce524 100644 --- a/weed/operation/upload_content.go +++ b/weed/operation/upload_content.go @@ -161,7 +161,7 @@ func retriedUploadData(data []byte, option *UploadOption) (uploadResult *UploadR uploadResult.RetryCount = i return } else { - glog.Warningf("uploading to %s: %v", option.UploadUrl, err) + glog.Warningf("uploading %d to %s: %v", i, option.UploadUrl, err) } time.Sleep(time.Millisecond * time.Duration(237*(i+1))) }