Skip to content
Snippets Groups Projects
Commit d71af2ee authored by Matthew Hodgson's avatar Matthew Hodgson
Browse files

don't log the whole DB config (including postgres password...)

parent b143641b
No related branches found
No related tags found
No related merge requests found
......@@ -403,7 +403,7 @@ def setup(config_options):
database_engine=database_engine,
)
logger.info("Preparing database: %r...", config.database_config)
logger.info("Preparing database: %s...", config.database_config['name'])
try:
db_conn = database_engine.module.connect(
......@@ -425,7 +425,7 @@ def setup(config_options):
)
sys.exit(1)
logger.info("Database prepared in %r.", config.database_config)
logger.info("Database prepared in %s.", config.database_config['name'])
hs.start_listening()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment