Skip to content

Commit

Permalink
Migliorata la stampa dell'errore in caso di validazione errata con tu…
Browse files Browse the repository at this point in the history
…tti gli attributi del model prima faceva tante entry nel log adesso un unica entry che con sistemi tipo logViewer si legge meglio e se mandiamo ad un servizio in cloud conta una sola request anzichè n request.
  • Loading branch information
lopadova committed Jan 10, 2023
1 parent 14b7cd0 commit 5d9b47f
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/Validable.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,18 @@ public function validate()
$this->setErrors($v->messages());

if (config('laravel-validable.debug')) {
Log::debug('Errore durante la validazione del model \'' . $this->getTable() . '\' in \'' . ($this->id > 0 ? 'update' : 'create') . '\' lanciato su evento saving del model.');
Log::debug('Attributi del model:');
Log::debug($this->toJson(JSON_PRETTY_PRINT));
Log::debug('Errori di validazione:');
Log::debug($this->getErrors());
Log::debug('StackTrace:'.PHP_EOL);
$msg = 'Errore durante la validazione del model \'' . $this->getTable() . '\' in \'' . ($this->id > 0 ? 'update' : 'create') . '\' lanciato su evento saving del model.';
$msg .= 'Attributi del model:';
$msg .= $this->toJson(JSON_PRETTY_PRINT);
$msg .= 'Errori di validazione:';
$msg .= $this->getErrors();
$msg .= 'StackTrace:'.PHP_EOL;
ob_start();
debug_print_backtrace();
$StackTrace = ob_get_contents();
ob_end_clean();
Log::debug($StackTrace);
$msg .= $StackTrace;
Log::debug($msg);
}

return false;
Expand Down

0 comments on commit 5d9b47f

Please sign in to comment.