Skip to content

Commit

Permalink
removed bindings from query log
Browse files Browse the repository at this point in the history
  • Loading branch information
freezer278 committed Dec 9, 2022
1 parent e13df04 commit fa5ec9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LaravelFluentdLoggerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private function initQueueJobsFailsLog(): void
'queue' => $event->job->getQueue(),
'job_name' => $event->job->resolveName(),
'attempts' => $event->job->attempts(),
// 'job_payload' => $event->job->getRawBody(),
// 'job_payload' => $event->job->getRawBody(),
]);
});
}
Expand All @@ -68,7 +68,7 @@ private function initDbQueryLog()
'DB Query',
[
'query' => $query->sql,
'bindings' => $query->bindings,
// 'bindings' => $query->bindings,
'time' => $query->time,
'connection' => $query->connectionName,
]
Expand Down

0 comments on commit fa5ec9e

Please sign in to comment.