From 0ee4d521454d458f16988e221b8c93967d82fe1a Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Tue, 22 Feb 2022 12:02:58 -0600 Subject: [PATCH] Lower log level when harvest time entry still running during import that is not exactly an unexpected situation, no need to raise awareness to it probably --- rattail_harvest/importing/harvest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rattail_harvest/importing/harvest.py b/rattail_harvest/importing/harvest.py index fa80b0b..a64c88d 100644 --- a/rattail_harvest/importing/harvest.py +++ b/rattail_harvest/importing/harvest.py @@ -224,7 +224,7 @@ class HarvestTimeEntryImporter(FromHarvest, rattail_harvest_importing.model.Harv return if entry['is_running']: - log.warning("Harvest time entry is still running: %s", entry) + log.debug("Harvest time entry is still running: %s", entry) return data['user_id'] = entry['user']['id']