mirror of
https://github.com/vladmandic/automatic
synced 2026-09-18 16:54:33 +02:00
update todo and startup logging
This commit is contained in:
@@ -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
@@ -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:
|
||||
|
||||
@@ -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]}')
|
||||
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user