Skip to content
Snippets Groups Projects
Commit c492a3c9 authored by Jan Mach's avatar Jan Mach
Browse files

Suppressed unnecesasry log line (info -> debug level).

parent 86941fd2
No related branches found
No related tags found
No related merge requests found
...@@ -661,7 +661,11 @@ class Vial(flask.Flask): # pylint: disable=locally-disabled,too-many-instance-a ...@@ -661,7 +661,11 @@ class Vial(flask.Flask): # pylint: disable=locally-disabled,too-many-instance-a
) )
self.set_resource(vial.const.RESOURCE_MIGRATE, migrate) self.set_resource(vial.const.RESOURCE_MIGRATE, migrate)
self.logger.info("Connected to database via SQLAlchemy ({})".format(self.config['SQLALCHEMY_DATABASE_URI'])) self.logger.debug(
"Connected to database via SQLAlchemy ({})".format(
self.config['SQLALCHEMY_DATABASE_URI']
)
)
return self return self
......
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