Update utils to get logging improvements

This commit is contained in:
Ryan Ahearn
2023-04-26 10:40:00 -04:00
parent e75f791663
commit b3d33ba4aa
2 changed files with 14 additions and 13 deletions

26
Pipfile.lock generated
View File

@@ -349,11 +349,11 @@
}, },
"flask": { "flask": {
"hashes": [ "hashes": [
"sha256:7eb373984bf1c770023fce9db164ed0c3353cd0b53f130f4693da0ca756a2e6d", "sha256:13f6329ddbfff11340939cd11919daf150a01358ded4b7e81c03c055dfecb559",
"sha256:c0bec9477df1cb867e5a67c9e1ab758de9cb4a3e52dd70681f59fa40a62b3f2d" "sha256:77504c4c097f56ac5f29b00f9009213010cf9d2923a288c0e0564a5db2bb53d6"
], ],
"index": "pypi", "index": "pypi",
"version": "==2.2.3" "version": "==2.2.4"
}, },
"flask-bcrypt": { "flask-bcrypt": {
"hashes": [ "hashes": [
@@ -768,7 +768,7 @@
"notifications-utils": { "notifications-utils": {
"editable": true, "editable": true,
"git": "https://github.com/GSA/notifications-utils.git", "git": "https://github.com/GSA/notifications-utils.git",
"ref": "689792bf2fb29905374c117a5a2c562754ac131a" "ref": "c7a85c4d1e8f975d349c1555f416ae20f28a2ce1"
}, },
"numpy": { "numpy": {
"hashes": [ "hashes": [
@@ -1267,11 +1267,11 @@
}, },
"werkzeug": { "werkzeug": {
"hashes": [ "hashes": [
"sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe", "sha256:340335057f72974d9281dbaf52c8090a9f9a59ba304ae814bf0656e6559c0020",
"sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612" "sha256:3b6b46926d052b8ebca97c4dc73c12e47bdd07d57ab0600c039c3155450227bc"
], ],
"index": "pypi", "index": "pypi",
"version": "==2.2.3" "version": "==2.3.0"
}, },
"wrapt": { "wrapt": {
"hashes": [ "hashes": [
@@ -1882,11 +1882,11 @@
}, },
"pip": { "pip": {
"hashes": [ "hashes": [
"sha256:3d8d72fa0714e93c9d3c2a0ede91e898c64596e0fa7d4523f72dd95728efc418", "sha256:0e7c86f486935893c708287b30bd050a36ac827ec7fe5e43fe7cb198dd835fba",
"sha256:c95b53d309f903f33dfe5fd37e502a5c3a05ee3454d518e45df522a4f091b728" "sha256:3ef6ac33239e4027d9a5598a381b9d30880a1477e50039db2eac6e8a8f6d1b18"
], ],
"markers": "python_version >= '3.7'", "markers": "python_version >= '3.7'",
"version": "==23.1.1" "version": "==23.1.2"
}, },
"pip-api": { "pip-api": {
"hashes": [ "hashes": [
@@ -2190,11 +2190,11 @@
}, },
"werkzeug": { "werkzeug": {
"hashes": [ "hashes": [
"sha256:2e1ccc9417d4da358b9de6f174e3ac094391ea1d4fbef2d667865d819dfd0afe", "sha256:340335057f72974d9281dbaf52c8090a9f9a59ba304ae814bf0656e6559c0020",
"sha256:56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612" "sha256:3b6b46926d052b8ebca97c4dc73c12e47bdd07d57ab0600c039c3155450227bc"
], ],
"index": "pypi", "index": "pypi",
"version": "==2.2.3" "version": "==2.3.0"
}, },
"xmltodict": { "xmltodict": {
"hashes": [ "hashes": [

View File

@@ -288,6 +288,7 @@ def _s3_credentials_from_env(bucket_prefix):
class Development(Config): class Development(Config):
DEBUG = True DEBUG = True
NOTIFY_LOG_LEVEL = "DEBUG"
SQLALCHEMY_ECHO = False SQLALCHEMY_ECHO = False
DVLA_EMAIL_ADDRESSES = ['success@simulator.amazonses.com'] DVLA_EMAIL_ADDRESSES = ['success@simulator.amazonses.com']