From 7f70a215cac360d65fea9997113614156f2b95d1 Mon Sep 17 00:00:00 2001 From: Dennis Ahrens <dennis.ahrens@hs-hannover.de> Date: Wed, 19 Mar 2014 13:48:05 +0100 Subject: [PATCH] [TASK] Changes a logging message severity. Comparing with empty data is an information that is not that necessary. --- hshetl/transformers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hshetl/transformers.py b/hshetl/transformers.py index cabca57..b20d0b4 100644 --- a/hshetl/transformers.py +++ b/hshetl/transformers.py @@ -127,7 +127,7 @@ class CompareTransformer(AbstractTransformer): def create_container(self): if self.target is None: - logging.info('Creating empty target, this results in compare with a big bunch of insert.') + logging.debug('Creating empty target, this results in compare with a big bunch of insert.') self.target = Container(name = self.name + '_nonetarget', properties = self.entity.properties) self.entity.add(self.target) -- GitLab