This commit is contained in:
iFargle
2023-02-19 18:59:28 +09:00
parent 2021e8756a
commit 5dc8d6d7b2

View File

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