Merge pull request #2920 from boracakirel/log-import-errors

Log import errors
This commit is contained in:
Cüneyt Şentürk 2023-03-09 10:03:00 +03:00 committed by GitHub
commit 9c3f635c53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,6 +39,8 @@ class Import
['type' => $translation] ['type' => $translation]
); );
} catch (Throwable $e) { } catch (Throwable $e) {
report($e);
$message = self::flashFailures($e); $message = self::flashFailures($e);
$success = false; $success = false;