change log level info -> debug
diff --git a/migration/src/download_jira.py b/migration/src/download_jira.py
index 0f9277d..82a48c3 100644
--- a/migration/src/download_jira.py
+++ b/migration/src/download_jira.py
@@ -79,7 +79,7 @@
                 files[filename] = Attachment(filename=filename, created=created, content=content, mime_type=mime_type)
 
     for (_, a) in files.items():
-        logger.info(f"Downloading attachment {a.filename}")
+        logger.debug(f"Downloading attachment {a.filename}")
         res = requests.get(a.content, headers={"Accept": a.mime_type})
         if res.status_code != 200:
             logger.error(f"Failed to download attachment {a.filename} in issue {jira_issue_id(num)}")