Add timestamps to searcher start/finish logs for run tracking

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 14:22:13 -08:00
parent d5e595475c
commit 6d325cf931

View File

@@ -52,7 +52,7 @@ async function main() {
}
}
console.log('🔍 claw-apply: Job Searcher starting\n');
console.log(`🔍 claw-apply: Job Searcher starting at ${new Date().toISOString()}\n`);
let totalAdded = 0, totalSeen = 0;
const platformsRun = [];
@@ -267,7 +267,7 @@ async function main() {
}
clearProgress(); // run finished cleanly — next run starts fresh with new keywords
console.log('\n✅ Search complete');
console.log(`\n✅ Search complete at ${new Date().toISOString()}`);
return { added: totalAdded, seen: totalSeen };
}