From a9a12ddc0c9ca54bdafe2faccb3ab9e59c33dda2 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Fri, 26 Jan 2024 11:12:00 +0800 Subject: [PATCH] :art: Logging iCloud path https://ld246.com/article/1706233831340 --- kernel/util/runtime.go | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/util/runtime.go b/kernel/util/runtime.go index 491f66167..5210c9636 100644 --- a/kernel/util/runtime.go +++ b/kernel/util/runtime.go @@ -310,6 +310,7 @@ func isICloudPath(workspaceAbsPath string) (ret bool) { if strings.HasPrefix(workspaceAbsPathLower, strings.ToLower(path)) { ret = true + logging.LogWarnf("workspace [%s] is in iCloud path [%s]", workspaceAbsPath, path) return io.EOF } return nil