Skip to content

Commit 3ab03f0

Browse files
remove logging from startup
1 parent 94d640a commit 3ab03f0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

restapi/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""Main entry point
22
"""
33
import os
4-
import logging
54

65
__author__ = 'Jelle Gerbrandy'
76
__email__ = '[email protected]'
@@ -21,7 +20,6 @@ def main(global_config, **settings):
2120
if sqlite_db != ':memory:':
2221
# create the database file if it does not exists
2322
if not os.path.exists(sqlite_db):
24-
logging.DEBUG('Setting up database at {sqlite_db}'.format(sqlite_db=sqlite_db))
2523
utils.setup_database(sqlite_db)
2624
try:
2725
database.connect()

0 commit comments

Comments
 (0)