mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Downgraded error logging to debug
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
4b4d4e98b6
commit
f90a6fed91
|
@ -34,13 +34,13 @@
|
||||||
<th>{{ trans('general.error') }}</th>
|
<th>{{ trans('general.error') }}</th>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@php \Log::error("import errors are: ".print_r($import_errors,true)); @endphp
|
@php \Log::debug("import errors are: ".print_r($import_errors,true)); @endphp
|
||||||
@foreach($import_errors AS $key => $actual_import_errors)
|
@foreach($import_errors AS $key => $actual_import_errors)
|
||||||
@php \Log::error("Key is: $key"); @endphp
|
@php \Log::debug("Key is: $key"); @endphp
|
||||||
@foreach($actual_import_errors AS $table => $error_bag)
|
@foreach($actual_import_errors AS $table => $error_bag)
|
||||||
@php \Log::error("Table is: $table"); @endphp
|
@php \Log::debug("Table is: $table"); @endphp
|
||||||
@foreach($error_bag as $field => $error_list)
|
@foreach($error_bag as $field => $error_list)
|
||||||
@php \Log::error("Field is: $field"); @endphp
|
@php \Log::debug("Field is: $field"); @endphp
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ $activeFile->file_path ?? "Unknown File" }}</td>
|
<td>{{ $activeFile->file_path ?? "Unknown File" }}</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
Loading…
Reference in a new issue