Skip to content

Commit

Permalink
FIX Migliorata la stampa dell'errore in caso di validazione errata co…
Browse files Browse the repository at this point in the history
…n tutti 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 20, 2023
1 parent 5d9b47f commit 75dfbb4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/Validable.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,15 @@ public function validate()
$msg .= 'Attributi del model:';
$msg .= $this->toJson(JSON_PRETTY_PRINT);
$msg .= 'Errori di validazione:';
$msg .= $this->getErrors();
$msg .= 'StackTrace:'.PHP_EOL;
$getErrors = $this->getErrors();
try {
if (count($getErrors) > 0) {
$msg .= json_encode($getErrors, JSON_PRETTY_PRINT);
}
} catch (\Throwable $e) {
$msg .= $e->getMessage();
}
$msg .= 'StackTrace:' . PHP_EOL;
ob_start();
debug_print_backtrace();
$StackTrace = ob_get_contents();
Expand Down

0 comments on commit 75dfbb4

Please sign in to comment.