This commit is contained in:
James Cole
2017-09-03 18:19:58 +02:00
parent 78c8680300
commit f2446d46aa
2 changed files with 2 additions and 2 deletions

View File

@@ -226,7 +226,7 @@ class ImportStorage
return false; return false;
} }
} }
Log::debug('There already is a transfer imported with these properties. Compare existing with new. ', ['existing' => $transfer, 'new' => $parameters]); Log::error('There already is a transfer imported with these properties. Compare existing with new. ', ['existing' => $transfer, 'new' => $parameters]);
return true; return true;
} }

View File

@@ -303,7 +303,7 @@ trait ImportSupport
->where('name', 'importHash') ->where('name', 'importHash')
->first(); ->first();
if (!is_null($entry)) { if (!is_null($entry)) {
Log::debug(sprintf('A journal with hash %s has already been imported (spoiler: it\'s journal #%d)', $hash, $entry->transaction_journal_id)); Log::error(sprintf('A journal with hash %s has already been imported (spoiler: it\'s journal #%d)', $hash, $entry->transaction_journal_id));
return true; return true;
} }