forked from Rockachopa/Timmy-time-dashboard
This commit is contained in:
@@ -630,7 +630,7 @@ class ThinkingEngine:
|
||||
|
||||
if new_corr:
|
||||
# Count entries (assuming each entry starts with a timestamp or header)
|
||||
line_count = len([l for l in new_corr.splitlines() if l.strip()])
|
||||
line_count = len([line for line in new_corr.splitlines() if line.strip()])
|
||||
parts.append(
|
||||
f"Workspace: {line_count} new correspondence entries (latest from: Hermes)"
|
||||
)
|
||||
@@ -854,10 +854,12 @@ class ThinkingEngine:
|
||||
|
||||
if new_corr or new_inbox:
|
||||
if new_corr:
|
||||
line_count = len([l for l in new_corr.splitlines() if l.strip()])
|
||||
line_count = len([line for line in new_corr.splitlines() if line.strip()])
|
||||
logger.info("Workspace: processed %d new correspondence entries", line_count)
|
||||
if new_inbox:
|
||||
logger.info("Workspace: processed %d new inbox files: %s", len(new_inbox), new_inbox)
|
||||
logger.info(
|
||||
"Workspace: processed %d new inbox files: %s", len(new_inbox), new_inbox
|
||||
)
|
||||
|
||||
# Mark as seen to update the state file
|
||||
workspace_monitor.mark_seen()
|
||||
|
||||
Reference in New Issue
Block a user