This commit is contained in:
iFargle
2023-02-19 18:57:16 +09:00
parent 0855282c6e
commit 2021e8756a

View File

@@ -10,7 +10,7 @@ from flask.logging import create_logger
from flask_sqlalchemy import SQLAlchemy
# app = Flask(__name__)
app = SQLAlchemy.init_app()
app = SQLAlchemy.init_app(Flask(__name__))
LOG = create_logger(app)
executor = Executor(app)
LOG.debug("Flask App Dump: "+str(app.config))