Skip to content

Commit 2ef6d66

Browse files
committed
unauthenticated must be triggered event in non-verbose mode
1 parent 67e51c0 commit 2ef6d66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/Traits/SendMetricsData.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ protected function sendMetricsData($data, $token)
1515
if ($response->successful()) {
1616
$this->info('Data successfully sent to Eloquentize');
1717
} else {
18-
$this->verbose('Data sending failed', 'error');
19-
$this->verbose($response->body(), 'error');
18+
$this->error('Data sending failed', 'error');
19+
$this->error($response->body(), 'error');
2020
}
2121
} catch (\Exception $e) {
2222
$this->verbose($e->getMessage(), 'error');

0 commit comments

Comments
 (0)