Skip to content

Commit ed6c117

Browse files
SewerynKrasscx1332
authored andcommitted
fix: log only demand id, not the entire object when it gets refreshed
1 parent 7665e16 commit ed6c117

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/market/market.module.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,9 @@ export class MarketModuleImpl implements MarketModule {
410410
this.events.emit("demandSubscriptionRefreshed", {
411411
demand,
412412
});
413-
this.logger.info("Refreshed subscription for offer proposals with the new demand", { demand });
413+
this.logger.info("Refreshed subscription for offer proposals with the new demand", {
414+
demandId: demand.id,
415+
});
414416
}
415417
})
416418
.catch((err) => {

0 commit comments

Comments
 (0)