mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed error logging in importer
refs: https://github.com/TryGhost/Toolbox/issues/431 - the error logging was only outputting 'Content import was unsuccessful' and not outputting the associated error
This commit is contained in:
parent
f9161876b3
commit
79dbdff054
1 changed files with 1 additions and 3 deletions
|
@ -436,9 +436,7 @@ class ImportManager {
|
|||
|
||||
return importResult;
|
||||
} catch (err) {
|
||||
logging.error(`Content import was unsuccessful`, {
|
||||
error: err
|
||||
});
|
||||
logging.error(err, 'Content import was unsuccessful');
|
||||
importResult = {data: {errors: [err]}};
|
||||
} finally {
|
||||
// Step 5: Cleanup any files
|
||||
|
|
Loading…
Add table
Reference in a new issue