personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Print unparsed entity lines as warnings for visibility

Changed from logging.warning/debug to print() so unparsed lines
show up directly in command output for easier debugging.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+3 -3
+3 -3
think/insights/entities.py
··· 99 99 unparsed.append(line) 100 100 101 101 if unparsed: 102 - logging.warning("entities hook: %d unparsed lines", len(unparsed)) 103 - for line in unparsed[:5]: # Log first 5 104 - logging.debug(" unparsed: %s", line) 102 + print(f"Warning: {len(unparsed)} unparsed entity lines:") 103 + for line in unparsed: 104 + print(f" {line}") 105 105 106 106 if not entities: 107 107 logging.info("entities hook: no entities extracted")