diff options
author | Your Name <you@example.com> | 2023-11-16 20:53:57 +0000 |
---|---|---|
committer | Your Name <you@example.com> | 2023-11-16 20:53:57 +0000 |
commit | 7021cdb1de12be3071ecb67aa8d2e34e7a0ec5ab (patch) | |
tree | f9d41ff94d565fa6b4a48ac79b5bd624b5758954 /modules/logging_config.py | |
parent | cdb60a690dcd35e865eb0caef6c6d8ff64e1b0d5 (diff) | |
download | stable-diffusion-webui-gfx803-7021cdb1de12be3071ecb67aa8d2e34e7a0ec5ab.tar.gz stable-diffusion-webui-gfx803-7021cdb1de12be3071ecb67aa8d2e34e7a0ec5ab.tar.bz2 stable-diffusion-webui-gfx803-7021cdb1de12be3071ecb67aa8d2e34e7a0ec5ab.zip |
actually adds handler to logging_config.py
Diffstat (limited to 'modules/logging_config.py')
-rw-r--r-- | modules/logging_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/logging_config.py b/modules/logging_config.py index 99ed2855..79269875 100644 --- a/modules/logging_config.py +++ b/modules/logging_config.py @@ -37,5 +37,5 @@ def setup_logging(loglevel): level=log_level,
format='%(asctime)s %(levelname)s [%(name)s] %(message)s',
datefmt='%Y-%m-%d %H:%M:%S',
- handlers=[]
+ handlers=loghandlers
)
|