minor changes and bugfixes

This commit is contained in:
Lunaresk 2022-07-25 16:01:53 +02:00
parent 6d038dc962
commit 22e45857ff
3 changed files with 4 additions and 4 deletions

3
.gitignore vendored
View File

@ -134,4 +134,5 @@ config.yaml
scans.json
test.*
*.db
.vscode
.vscode
*.tar

View File

@ -22,12 +22,12 @@ if not exists(DIR + "../logs"):
makedirs(DIR + "../logs")
fileConfig(DIR + "../configs/log.conf")
LOGGER = getLogger("root")
LOGGER = getLogger("main")
bootstrap = Bootstrap()
db = SQLAlchemy()
login = LoginManager()
login.login_view = 'web_login'
login.login_view = 'auth.web_login'
migrate = Migrate()

View File

@ -8,7 +8,6 @@ keys=console, file
keys=stdout
[logger_root]
handlers = console, file
level = DEBUG
[logger_main]