Skip to content

Commit

Permalink
changes in path
Browse files Browse the repository at this point in the history
  • Loading branch information
Mezeman1 committed Aug 31, 2020
1 parent ad591f2 commit 57ce46a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/RemoteLogging.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ public function captureException(Exception $exception)
'url' => request()->fullUrl(),
];

$this->sendTo('projects/error', $data);
$this->sendTo('projects/error/logs', $data);
}

public function sendFailedJob($data)
{
$this->sendTo('projects/error', $data);
$this->sendTo('projects/error/failed-job', $data);
}

protected function sendTo($path, $data)
Expand Down

0 comments on commit 57ce46a

Please sign in to comment.