fix(plugin-fm): fix error log (#3038)
This commit is contained in:
parent
57c7450e16
commit
52c3f28c04
@ -228,7 +228,7 @@ export const toItem = (file) => {
|
||||
};
|
||||
|
||||
export const toFileList = (fileList: any) => {
|
||||
return toArr(fileList?.filter(Boolean)).map(toItem);
|
||||
return toArr(fileList).filter(Boolean).map(toItem);
|
||||
};
|
||||
|
||||
export const toValue = (fileList: any) => {
|
||||
|
@ -18,10 +18,6 @@ export class ErrorHandler {
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
if (ctx.status === 500) {
|
||||
console.error(err);
|
||||
}
|
||||
}
|
||||
|
||||
middleware() {
|
||||
|
@ -78,6 +78,7 @@ async function multipart(ctx: Context, next: Next) {
|
||||
if (err.name === 'MulterError') {
|
||||
return ctx.throw(400, err);
|
||||
}
|
||||
ctx.logger.error(err);
|
||||
return ctx.throw(500);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user