mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
Changed log level to debug vs info/error
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
6800098469
commit
feef06e7bf
|
@ -198,8 +198,8 @@ class Importer extends Component
|
||||||
public function updating($name, $new_import_type)
|
public function updating($name, $new_import_type)
|
||||||
{
|
{
|
||||||
if ($name == "activeFile.import_type") {
|
if ($name == "activeFile.import_type") {
|
||||||
\Log::info("WE ARE CHANGING THE import_type!!!!! TO: " . $new_import_type);
|
\Log::debug("WE ARE CHANGING THE import_type!!!!! TO: " . $new_import_type);
|
||||||
\Log::info("so, what's \$this->>field_map at?: " . print_r($this->field_map, true));
|
\Log::debug("so, what's \$this->>field_map at?: " . print_r($this->field_map, true));
|
||||||
// go through each header, find a matching field to try and map it to.
|
// go through each header, find a matching field to try and map it to.
|
||||||
foreach ($this->activeFile->header_row as $i => $header) {
|
foreach ($this->activeFile->header_row as $i => $header) {
|
||||||
// do we have something mapped already?
|
// do we have something mapped already?
|
||||||
|
@ -252,7 +252,7 @@ class Importer extends Component
|
||||||
$this->authorize('import');
|
$this->authorize('import');
|
||||||
$this->progress = -1; // '-1' means 'don't show the progressbar'
|
$this->progress = -1; // '-1' means 'don't show the progressbar'
|
||||||
$this->progress_bar_class = 'progress-bar-warning';
|
$this->progress_bar_class = 'progress-bar-warning';
|
||||||
\Log::info("Hey, we are calling MOUNT (in the importer-file) !!!!!!!!"); //fcuk
|
\Log::debug("Hey, we are calling MOUNT (in the importer-file) !!!!!!!!"); //fcuk
|
||||||
$this->importTypes = [
|
$this->importTypes = [
|
||||||
'asset' => trans('general.assets'),
|
'asset' => trans('general.assets'),
|
||||||
'accessory' => trans('general.accessories'),
|
'accessory' => trans('general.accessories'),
|
||||||
|
@ -273,8 +273,8 @@ class Importer extends Component
|
||||||
|
|
||||||
public function selectFile($id)
|
public function selectFile($id)
|
||||||
{
|
{
|
||||||
\Log::info("TOGGLE EVENT FIRED!");
|
\Log::debug("TOGGLE EVENT FIRED!");
|
||||||
\Log::error("The ID we are trying to find is AS FOLLOWS: ".$id);
|
\Log::debug("The ID we are trying to find is AS FOLLOWS: ".$id);
|
||||||
$this->activeFile = Import::find($id);
|
$this->activeFile = Import::find($id);
|
||||||
$this->field_map = null;
|
$this->field_map = null;
|
||||||
foreach($this->activeFile->header_row as $element) {
|
foreach($this->activeFile->header_row as $element) {
|
||||||
|
@ -288,7 +288,7 @@ class Importer extends Component
|
||||||
$this->file_id = $id;
|
$this->file_id = $id;
|
||||||
$this->import_errors = null;
|
$this->import_errors = null;
|
||||||
$this->statusText = null;
|
$this->statusText = null;
|
||||||
\Log::error("The import type we are about to try and load up is gonna be this: ".$this->activeFile->import_type);
|
\Log::debug("The import type we are about to try and load up is gonna be this: ".$this->activeFile->import_type);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue