Skip to content

Commit f472a82

Browse files
committed
remove bad logs
1 parent 40c85b5 commit f472a82

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/worker/tasks/balance-subscription-worker.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ const handler: Processor<string, void, string> = async (job: Job<string>) => {
6464
await Promise.all(
6565
batch.map(async (subscription) => {
6666
try {
67-
console.log(`processing subscription ${subscription.id}`);
6867
// Get the current balance
6968
let currentBalance: bigint;
7069
const chain = await getChain(Number.parseInt(subscription.chainId));
@@ -89,7 +88,6 @@ const handler: Processor<string, void, string> = async (job: Job<string>) => {
8988
});
9089
}
9190

92-
job.log(`Current balance: ${currentBalance}`);
9391
const max = subscription.config.threshold?.max
9492
? BigInt(subscription.config.threshold.max)
9593
: 0n; // If no max set, use 0 (always below current)

0 commit comments

Comments
 (0)