Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/superlocalmemory/server/unified_daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,8 +535,8 @@ def _warmup_embedder():
application.state.queue_consumer = None
application.state.recall_queue = None

except Exception as exc:
logger.warning("Engine init failed: %s", exc)
except Exception:
logger.exception("Engine init failed") # auto-includes traceback
application.state.engine = None
application.state.config = None

Expand Down