Improved logging & add graphicsmagick to docker file.

This commit is contained in:
Patrick Fic
2022-05-12 16:30:15 -07:00
parent 539d35203e
commit fc37f09e6b
8 changed files with 25 additions and 20 deletions

View File

@@ -57,16 +57,12 @@ export async function JobsMoveMedia(req: Request, res: Response) {
JobsListMedia(req, res);
} catch (err) {
logger.error(
"Error moving job media",
"from",
logger.error("Error moving job media", {
from_jobid,
"to",
jobid,
"files",
files,
err
);
err,
});
res.status(500).send(err);
}
}