mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-11-22 05:55:12 +00:00
condense error info
This commit is contained in:
parent
b4d10aa8f8
commit
f62cd8941c
1 changed files with 11 additions and 14 deletions
|
@ -127,29 +127,26 @@ export class QueueProcessorService implements OnApplicationShutdown {
|
|||
this.logger = this.queueLoggerService.logger;
|
||||
|
||||
function renderError(e?: Error) {
|
||||
// 何故かeがundefinedで来ることがある
|
||||
if (!e) return '?';
|
||||
|
||||
if (e instanceof Bull.UnrecoverableError) {
|
||||
return {
|
||||
stack: undefined,
|
||||
message: e.message,
|
||||
name: 'Bull.UnrecoverableError',
|
||||
};
|
||||
} else if (e) { // 何故かeがundefinedで来ることがある
|
||||
return {
|
||||
stack: e.stack,
|
||||
message: e.message,
|
||||
name: e.name,
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
stack: '?',
|
||||
message: '?',
|
||||
name: '?',
|
||||
};
|
||||
}
|
||||
|
||||
return {
|
||||
stack: e.stack,
|
||||
message: e.message,
|
||||
name: e.name,
|
||||
};
|
||||
}
|
||||
|
||||
function renderJob(job?: Bull.Job) {
|
||||
if (!job) return 'N/A';
|
||||
if (!job) return '?';
|
||||
|
||||
return {
|
||||
name: job.name,
|
||||
info: getJobInfo(job),
|
||||
|
|
Loading…
Reference in a new issue