Skip to content
This repository was archived by the owner on Mar 13, 2020. It is now read-only.

Commit 1bb9990

Browse files
committed
SP-149 - info log DataSource to be used for execution
1 parent afa3f50 commit 1bb9990

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rdl/data_sources/DataSourceFactory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __init__(self, logger=None):
1111
def create_source(self, connection_string):
1212
for source in self.sources:
1313
if source.can_handle_connection_string(connection_string):
14-
self.logger.debug(f"Found handler '{source}' for connection string.")
14+
self.logger.info(f"Found handler '{source}' for given connection string.")
1515
return source(connection_string)
1616

1717
raise RuntimeError('There are no data sources that can handle this connection string')

0 commit comments

Comments
 (0)