Skip to content

Commit

Permalink
feat(mm): make installer thread logging stmts debug
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Mar 21, 2024
1 parent dfeaf26 commit 6b89c68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions invokeai/app/services/model_install/model_install_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,11 +425,11 @@ def _start_installer_thread(self) -> None:
self._running = True

def _install_next_item(self) -> None:
self._logger.info(f"Installer thread {threading.get_ident()} starting")
self._logger.debug(f"Installer thread {threading.get_ident()} starting")
while True:
if self._stop_event.is_set():
break
self._logger.info(f"Installer thread {threading.get_ident()} running")
self._logger.debug(f"Installer thread {threading.get_ident()} polling")
try:
job = self._install_queue.get(timeout=1)
except Empty:
Expand Down

0 comments on commit 6b89c68

Please sign in to comment.