From a41c820525d061032a541deeade304a84eb96769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=AE=E5=87=89?= <927625802@qq.com> Date: Wed, 17 Nov 2021 20:29:01 +0800 Subject: [PATCH] :bug: fix debug output --- drivers/googledrive.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/googledrive.go b/drivers/googledrive.go index 3b5b1eb3..5ebc8684 100644 --- a/drivers/googledrive.go +++ b/drivers/googledrive.go @@ -199,7 +199,7 @@ func (g GoogleDrive) GetFile(path string, account *model.Account) (*GoogleFile, func (g GoogleDrive) Path(path string, account *model.Account) (*model.File, []*model.File, error) { path = utils.ParsePath(path) - log.Debugf("ali path: %s", path) + log.Debugf("google path: %s", path) cache, err := conf.Cache.Get(conf.Ctx, fmt.Sprintf("%s%s", account.Name, path)) if err == nil { files, _ := cache.([]GoogleFile)