Log non-compliant barcode error as debug message

This commit is contained in:
Marcus Moore 2023-10-02 12:06:24 -07:00
parent 4e6764428e
commit a5fd218c23

View file

@ -374,7 +374,7 @@ abstract class Label
try { try {
$pdf->write1DBarcode($value, $type, $x, $y, $width, $height, null, ['stretch'=>true]); $pdf->write1DBarcode($value, $type, $x, $y, $width, $height, null, ['stretch'=>true]);
} catch (\Exception|TypeError $e) { } catch (\Exception|TypeError $e) {
\Log::error('The 1D barcode ' . $value . ' is not compliant with the barcode type '. $type); \Log::debug('The 1D barcode ' . $value . ' is not compliant with the barcode type '. $type);
} }
} }