aboutsummaryrefslogtreecommitdiffstats
path: root/lib/orm/management/commands/lsupdates.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/orm/management/commands/lsupdates.py')
-rw-r--r--lib/orm/management/commands/lsupdates.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/orm/management/commands/lsupdates.py b/lib/orm/management/commands/lsupdates.py
index 2a89a811..ca67713a 100644
--- a/lib/orm/management/commands/lsupdates.py
+++ b/lib/orm/management/commands/lsupdates.py
@@ -327,9 +327,7 @@ class Command(BaseCommand):
for source in data_sources:
if source.loaded and not (source.update_frequency == DataSource.ONSTARTUP):
- logger.info("Skipping source data from %s",source.description)
print("Skipping datasource %s (already loaded)" % (source.description))
- _log("Skipping datasource %s (already loaded)" % (source.description))
continue
elif not source.init:
# No Init action?
@@ -338,7 +336,6 @@ class Command(BaseCommand):
else:
logger.info("Fetching datasource %s:%s" % (source.source,source.description))
print("Fetching datasource '%s:%s'" % (source.source,source.description))
- _log("Fetching datasource '%s:%s'" % (source.source,source.description))
# Development/testing shortcut
if ('cve' == source.data) and ('yes' == SrtSetting.objects.get(name='SRTDBG_SKIP_CVE_IMPORT').value):