Skip to content

Commit cde4e0f

Browse files
committed
Log fixes
1 parent 516f35a commit cde4e0f

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

src/distribution/distribution.service.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,8 @@ export class DistributionService {
8383
}
8484

8585
this.logger.log(
86-
`Created ${result.length} groups out of ${data.length} scores from ${hodlerGroups.length} hodlers`
86+
`Created ${result.length} groups out of ${data.length} scores for ${hodlerGroups.length} hodlers`
8787
)
88-
this.logger.log(result)
8988

9089
return result
9190
}

src/staking-rewards/staking-rewards.service.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,6 @@ export class StakingRewardsService {
139139
public async addScores(stamp: number, scores: AddScoresData): Promise<boolean> {
140140
if (this.isLive === 'true') {
141141
try {
142-
this.logger.log(`Sending Add-Scores for ${stamp}: ${JSON.stringify({
143-
Scores: scores,
144-
})}`)
145-
146142
const { messageId, result } = await sendAosMessage({
147143
processId: this.stakingRewardsProcessId,
148144
signer: this.signer as any, // NB: types, lol

0 commit comments

Comments
 (0)