diff --git a/beat/backend/python/helpers.py b/beat/backend/python/helpers.py index c255cdc1615e6600e1ae24461acefa4d0194842e..d5a638bb61d8d862406d9d55e33738b469e3ea3e 100755 --- a/beat/backend/python/helpers.py +++ b/beat/backend/python/helpers.py @@ -233,10 +233,9 @@ def create_inputs_from_configuration(config, algorithm, prefix, cache_root, ((algorithm.type == Algorithm.SEQUENTIAL) and (details['channel'] == config['channel'])): input = Input(name, algorithm.input_map[name], data_source) - logger.debug("Input '%s' created: group='%s', dataformat='%s', database-output='%s/%s/%s:%s'" % \ + logger.debug("Input '%s' created: group='%s', dataformat='%s', database-file='%s'" % \ (name, details['channel'], algorithm.input_map[name], - details['database'], details['protocol'], details['set'], - details['output'])) + details['path'])) else: data_loader = _get_data_loader_for(details) data_loader.add(name, data_source)