refactor(backend): 必要ないas anyを消去 (#10293)
This commit is contained in:
parent
65b1524f92
commit
0ac1fc846b
5 changed files with 6 additions and 5 deletions
|
@ -64,7 +64,7 @@ export class InboxProcessorService {
|
|||
const activity = job.data.activity;
|
||||
|
||||
//#region Log
|
||||
const info = Object.assign({}, activity) as any;
|
||||
const info = Object.assign({}, activity);
|
||||
delete info['@context'];
|
||||
this.logger.debug(JSON.stringify(info, null, 2));
|
||||
//#endregion
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue