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
b70001e6
Commit
b70001e6
authored
Jun 30, 2023
by
Aarni Koskela
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add SD_WEBUI_LOG_LEVEL envvar
parent
fab73f2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
webui.py
webui.py
+11
-0
No files found.
webui.py
View file @
b70001e6
...
...
@@ -18,6 +18,17 @@ from packaging import version
import
logging
# We can't use cmd_opts for this because it will not have been initialized at this point.
log_level
=
os
.
environ
.
get
(
"SD_WEBUI_LOG_LEVEL"
)
if
log_level
:
log_level
=
getattr
(
logging
,
log_level
.
upper
(),
None
)
or
logging
.
INFO
logging
.
basicConfig
(
level
=
log_level
,
format
=
'
%(asctime)
s
%(levelname)
s [
%(name)
s]
%(message)
s'
,
datefmt
=
'
%
Y-
%
m-
%
d
%
H:
%
M:
%
S'
,
)
logging
.
getLogger
(
"torch.distributed.nn"
)
.
setLevel
(
logging
.
ERROR
)
# sshh...
logging
.
getLogger
(
"xformers"
)
.
addFilter
(
lambda
record
:
'A matching Triton is not available'
not
in
record
.
getMessage
())
from
modules
import
paths
,
timer
,
import_hook
,
errors
,
devices
# noqa: F401
...
...
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