Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
236eb82c
Commit
236eb82c
authored
Nov 16, 2023
by
Lucas Daniel Velazquez M
Committed by
GitHub
Nov 16, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds tqdm handler to logging_config.py for progress bar integration
parent
4afaaf8a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
modules/logging_config.py
modules/logging_config.py
+14
-0
No files found.
modules/logging_config.py
View file @
236eb82c
import
os
import
os
import
logging
import
logging
from
tqdm.auto
import
tqdm
class
TqdmLoggingHandler
(
logging
.
Handler
):
def
__init__
(
self
,
level
=
logging
.
INFO
):
super
()
.
__init__
(
level
)
def
emit
(
self
,
record
):
try
:
msg
=
self
.
format
(
record
)
tqdm
.
write
(
msg
)
self
.
flush
()
except
Exception
:
self
.
handleError
(
record
)
def
setup_logging
(
loglevel
):
def
setup_logging
(
loglevel
):
if
loglevel
is
None
:
if
loglevel
is
None
:
...
@@ -12,5 +25,6 @@ def setup_logging(loglevel):
...
@@ -12,5 +25,6 @@ def setup_logging(loglevel):
level
=
log_level
,
level
=
log_level
,
format
=
'
%(asctime)
s
%(levelname)
s [
%(name)
s]
%(message)
s'
,
format
=
'
%(asctime)
s
%(levelname)
s [
%(name)
s]
%(message)
s'
,
datefmt
=
'
%
Y-
%
m-
%
d
%
H:
%
M:
%
S'
,
datefmt
=
'
%
Y-
%
m-
%
d
%
H:
%
M:
%
S'
,
handlers
=
[
TqdmLoggingHandler
()]
)
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment