Skip to content

Commit 88de556

Browse files
committed
update todo and startup logging
1 parent e0e4e41 commit 88de556

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

TODO.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@ Main ToDo list can be found at [GitHub projects](https://github.com/users/vladma
55
## Candidates for next release
66

77
- stable cascade
8-
- init latents, variations, tiling
9-
- lora sliders: <https://github.com/vladmandic/automatic/issues/2868>
8+
- init latents: variations, tiling, img2img
109
- x-adapter: <https://github.com/showlab/X-Adapter>
1110
- diffusers public callbacks
1211
- image2video: pia and vgen pipelines
1312
- video2video
1413
- async lowvram: <https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14855>
14+
- remove builtin: controlnet
15+
- remove builtin: image-browser
16+
- defork
17+
- remove training: ti
18+
- remove training: hypernetwork
19+
- extra network hide page with no entries
1520

1621
## Control missing features
1722

installer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ def extensions_preload(parser):
10391039
preload_extensions(ext_dir, parser)
10401040
t1 = time.time()
10411041
preload_time[ext_dir] = round(t1 - t0, 2)
1042-
log.info(f'Extension preload: {preload_time}')
1042+
log.debug(f'Extension preload: {preload_time}')
10431043
except Exception:
10441044
log.error('Error running extension preloading')
10451045
if args.profile:

modules/api/middleware.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919

2020
def setup_middleware(app: FastAPI, cmd_opts):
21-
log.info('Initializing middleware')
2221
ssl._create_default_https_context = ssl._create_unverified_context # pylint: disable=protected-access
2322
uvicorn_logger=logging.getLogger("uvicorn.error")
2423
uvicorn_logger.disabled = True
@@ -91,3 +90,4 @@ async def general_exception_handler(req: Request, e: Exception):
9190
return handle_exception(req, e)
9291

9392
app.build_middleware_stack() # rebuild middleware stack on-the-fly
93+
log.debug(f'FastAPI middleware: {[m.__class__.__name__ for m in app.user_middleware]}')

webui.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def initialize():
105105
t_timer, t_total = modules.scripts.load_scripts()
106106
timer.startup.record("extensions")
107107
timer.startup.records["extensions"] = t_total # scripts can reset the time
108-
log.info(f'Extensions init time: {t_timer.summary()}')
108+
log.debug(f'Extensions init time: {t_timer.summary()}')
109109

110110
modelloader.load_upscalers()
111111
timer.startup.record("upscalers")

0 commit comments

Comments
 (0)