Skip to content
Snippets Groups Projects
Commit 7f70a215 authored by Dennis Ahrens's avatar Dennis Ahrens
Browse files

[TASK] Changes a logging message severity.

Comparing with empty data is an information that is not that necessary.
parent 3fdb969f
No related branches found
No related tags found
No related merge requests found
...@@ -127,7 +127,7 @@ class CompareTransformer(AbstractTransformer): ...@@ -127,7 +127,7 @@ class CompareTransformer(AbstractTransformer):
def create_container(self): def create_container(self):
if self.target is None: 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', self.target = Container(name = self.name + '_nonetarget',
properties = self.entity.properties) properties = self.entity.properties)
self.entity.add(self.target) self.entity.add(self.target)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment