From 40f92dfb62349acd59f656c98d67e4825ffa403d Mon Sep 17 00:00:00 2001
From: allegroai <>
Date: Sun, 18 Sep 2022 14:18:57 +0300
Subject: [PATCH] Fix local cache warning to debug

---
 clearml/storage/helper.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/clearml/storage/helper.py b/clearml/storage/helper.py
index 459794eb..d79d94fd 100644
--- a/clearml/storage/helper.py
+++ b/clearml/storage/helper.py
@@ -801,7 +801,7 @@ class StorageHelper(object):
             if verbose:
                 self._log.info('Start downloading from %s' % remote_path)
             if not overwrite_existing and Path(local_path).is_file():
-                self._log.warning(
+                self._log.debug(
                     'File {} already exists, no need to download, thread id = {}'.format(
                         local_path,
                         threading.current_thread().ident,