Skip to content

Commit 726c15a

Browse files
committed
chore: Overhaul log statements
1 parent 089801c commit 726c15a

8 files changed

+30
-16
lines changed

src/monitor/monitor.gateway.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class MonitorGateway implements OnModuleInit {
3535
}
3636

3737
private async listenToMonitors(): Promise<void> {
38-
this.loggerService.info(`Listening to Monitor services to broadcast state events.`);
38+
this.loggerService.debug(`Listening to Monitor services to broadcast state events.`);
3939

4040
for (const [chainId] of this.configService.chainsConfig) {
4141
const monitorPort = await this.monitorService.attachToMonitor(chainId);

src/monitor/monitor.worker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class MonitorWorker {
136136

137137
private broadcastStatus(): void {
138138
if (!this.latestBlock) {
139-
this.logger.warn('Unable to broadcast status. \'latestBlock\' is null.');
139+
this.logger.error('Unable to broadcast status. \'latestBlock\' is null.');
140140
return;
141141
}
142142

src/submitter/queues/eval-queue.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ export class EvalQueue extends ProcessingQueue<EvalOrder, SubmitOrder> {
5050
order: EvalOrder,
5151
_retryCount: number,
5252
): Promise<HandleOrderResult<SubmitOrder> | null> {
53+
this.logger.debug(
54+
{ messageIdentifier: order.messageIdentifier },
55+
`Handling submitter eval order.`,
56+
);
57+
5358
const bounty = await this.queryBountyInfo(order.messageIdentifier);
5459
if (bounty === null || bounty === undefined) {
5560
throw Error(
@@ -306,7 +311,7 @@ export class EvalQueue extends ProcessingQueue<EvalOrder, SubmitOrder> {
306311
securedDeliveryRelativeProfit > this.evaluationConfig.relativeMinDeliveryReward
307312
);
308313

309-
this.logger.debug(
314+
this.logger.info(
310315
{
311316
messageIdentifier: bounty.messageIdentifier,
312317
maxGasDelivery: bounty.maxGasDelivery,
@@ -396,7 +401,7 @@ export class EvalQueue extends ProcessingQueue<EvalOrder, SubmitOrder> {
396401
ackRelativeProfit > this.evaluationConfig.relativeMinAckReward
397402
);
398403

399-
this.logger.debug(
404+
this.logger.info(
400405
{
401406
messageIdentifier: bounty.messageIdentifier,
402407
maxGasDelivery: bounty.maxGasDelivery,

src/submitter/queues/submit-queue.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class SubmitQueue extends ProcessingQueue<
3232
): Promise<HandleOrderResult<SubmitOrderResult> | null> {
3333
this.logger.debug(
3434
{ messageIdentifier: order.messageIdentifier },
35-
`Handling submit order`,
35+
`Handling submitter submit order`,
3636
);
3737

3838
// Simulate the packet submission as a static call. Skip if it's the first submission try,
@@ -113,20 +113,20 @@ export class SubmitQueue extends ProcessingQueue<
113113

114114
if (success) {
115115
if (result != null) {
116-
this.logger.debug(
116+
this.logger.info(
117117
orderDescription,
118118
`Successful submit order: message submitted.`,
119119
);
120120

121121
void this.registerSubmissionCost(order, result.txReceipt.gasUsed);
122122
} else {
123-
this.logger.debug(
123+
this.logger.info(
124124
orderDescription,
125125
`Successful submit order: message not submitted.`,
126126
);
127127
}
128128
} else {
129-
this.logger.error(orderDescription, `Unsuccessful submit order.`);
129+
this.logger.warn(orderDescription, `Unsuccessful submit order.`);
130130

131131
if (order.priority) {
132132
this.logger.warn(

src/submitter/submitter.worker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ class SubmitterWorker {
276276
priority: boolean,
277277
incentivesPayload?: BytesLike,
278278
) {
279-
this.logger.debug(
279+
this.logger.info(
280280
{ messageIdentifier, priority },
281281
`Submit order received.`,
282282
);

src/wallet/queues/confirm-queue.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ export class ConfirmQueue extends ProcessingQueue<PendingTransaction, ConfirmedT
3838
order: PendingTransaction,
3939
retryCount: number,
4040
): Promise<HandleOrderResult<ConfirmedTransaction> | null> {
41+
this.logger.debug(
42+
{ txRequest: order.txRequest },
43+
`Handling wallet confirm order.`,
44+
);
45+
4146
// If it's the first time the order is processed, just wait for it
4247
if (retryCount == 0) {
4348
const transactionReceipt = order.tx.wait(
@@ -206,7 +211,7 @@ export class ConfirmQueue extends ProcessingQueue<PendingTransaction, ConfirmedT
206211
};
207212

208213
if (success) {
209-
this.logger.debug(orderDescription, `Transaction confirmed.`);
214+
this.logger.info(orderDescription, `Transaction confirmed.`);
210215
} else {
211216
this.logger.error(orderDescription, `Transaction not confirmed.`);
212217
}

src/wallet/queues/submit-queue.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ export class SubmitQueue extends ProcessingQueue<WalletTransactionRequest, Pendi
3030
order: WalletTransactionRequest,
3131
_retryCount: number
3232
): Promise<HandleOrderResult<PendingTransaction> | null> {
33+
this.logger.debug(
34+
{ txRequest: order.txRequest },
35+
`Handling wallet submit order.`,
36+
);
3337

3438
const txDeadline = order.options.deadline ?? Infinity;
3539
if (Date.now() > txDeadline) {
@@ -104,12 +108,12 @@ export class SubmitQueue extends ProcessingQueue<WalletTransactionRequest, Pendi
104108

105109
if (success) {
106110
if (result != null) {
107-
this.logger.debug(
111+
this.logger.info(
108112
orderDescription,
109113
`Successful transaction processing: transaction submitted.`,
110114
);
111115
} else {
112-
this.logger.debug(
116+
this.logger.info(
113117
orderDescription,
114118
`Successful transaction processing: transaction not submitted.`,
115119
);

src/wallet/wallet.worker.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ class WalletWorker {
321321
submissionError: tryErrorToString(transaction.submissionError)
322322
};
323323

324-
this.logger.debug(
324+
this.logger.info(
325325
logDescription,
326326
`Unsuccessful transaction processing: transaction failed.`,
327327
);
@@ -348,7 +348,7 @@ class WalletWorker {
348348
blockNumber: transaction.txReceipt.blockNumber
349349
};
350350

351-
this.logger.debug(
351+
this.logger.info(
352352
logDescription,
353353
`Successful transaction processing: transaction confirmed.`,
354354
);
@@ -397,7 +397,7 @@ class WalletWorker {
397397

398398
await this.submitQueue.addOrders(requeueRequest);
399399
} else {
400-
this.logger.debug(
400+
this.logger.info(
401401
logDescription,
402402
`Unsuccessful transaction processing: transaction rejected.`,
403403
);
@@ -433,7 +433,7 @@ class WalletWorker {
433433
return null;
434434
}
435435

436-
this.logger.debug(
436+
this.logger.info(
437437
{ cancelTxNonce },
438438
'Submitting transaction cancellation'
439439
);

0 commit comments

Comments
 (0)