Merge branch 'enhance/log-backend-error-objects' into 'develop'

Log backend error objects

See merge request firefish/firefish!10528
This commit is contained in:
Kainoa Kanter 2023-07-24 23:04:42 +00:00
commit a7fbc02ca5

View File

@ -115,6 +115,10 @@ export default class Logger {
console.log(important ? chalk.bold(log) : log);
if (level === "error" && data !== null) {
console.log(data);
}
if (store) {
if (this.syslogClient) {
const send =