update todo and startup logging

This commit is contained in:
Vladimir Mandic
2024-02-22 21:05:39 -05:00
parent e0e4e41e66
commit 88de556445
4 changed files with 10 additions and 5 deletions
+7 -2
View File
@@ -5,13 +5,18 @@ Main ToDo list can be found at [GitHub projects](https://github.com/users/vladma
## Candidates for next release
- stable cascade
- init latents, variations, tiling
- lora sliders: <https://github.com/vladmandic/automatic/issues/2868>
- init latents: variations, tiling, img2img
- x-adapter: <https://github.com/showlab/X-Adapter>
- diffusers public callbacks
- image2video: pia and vgen pipelines
- video2video
- async lowvram: <https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/14855>
- remove builtin: controlnet
- remove builtin: image-browser
- defork
- remove training: ti
- remove training: hypernetwork
- extra network hide page with no entries
## Control missing features
+1 -1
View File
@@ -1039,7 +1039,7 @@ def extensions_preload(parser):
preload_extensions(ext_dir, parser)
t1 = time.time()
preload_time[ext_dir] = round(t1 - t0, 2)
log.info(f'Extension preload: {preload_time}')
log.debug(f'Extension preload: {preload_time}')
except Exception:
log.error('Error running extension preloading')
if args.profile:
+1 -1
View File
@@ -18,7 +18,6 @@ errors.install()
def setup_middleware(app: FastAPI, cmd_opts):
log.info('Initializing middleware')
ssl._create_default_https_context = ssl._create_unverified_context # pylint: disable=protected-access
uvicorn_logger=logging.getLogger("uvicorn.error")
uvicorn_logger.disabled = True
@@ -91,3 +90,4 @@ def setup_middleware(app: FastAPI, cmd_opts):
return handle_exception(req, e)
app.build_middleware_stack() # rebuild middleware stack on-the-fly
log.debug(f'FastAPI middleware: {[m.__class__.__name__ for m in app.user_middleware]}')
+1 -1
View File
@@ -105,7 +105,7 @@ def initialize():
t_timer, t_total = modules.scripts.load_scripts()
timer.startup.record("extensions")
timer.startup.records["extensions"] = t_total # scripts can reset the time
log.info(f'Extensions init time: {t_timer.summary()}')
log.debug(f'Extensions init time: {t_timer.summary()}')
modelloader.load_upscalers()
timer.startup.record("upscalers")