Skip to content

Commit

Permalink
add key log
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed Jul 24, 2024
1 parent 6562701 commit 8c72719
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/Helpers/ChatHelperTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ public function skip(Source $source, string $key): bool
{
if (! $source->force &&
SourceTask::where('source_id', $source->id)->where('task_key', $key)->exists()) {
Log::info('[LaraChain] GetWebContentJob - Skipping - already ran');
Log::info('[LaraChain] GetWebContentJob - Skipping - already ran', [
'source' => $source->id,
'key' => $key,
]);

return true;
} else {
Expand Down

0 comments on commit 8c72719

Please sign in to comment.