Skip to content

Commit

Permalink
Remove debug logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentwschau committed Feb 7, 2025
1 parent 39d485e commit 47985bd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions indexer/services/socks/src/lib/subscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,12 @@ export class Subscriptions {
blockHeight,
});
} catch (error) {
logger.error({
at: 'getInitialResponseForSubaccountSubscription',
message: 'Error on getting initial response for subaccount subscription',
id,
error,
});
// The subaccounts API endpoint returns a 404 for subaccounts that are not indexed, however
// such subaccounts can be subscribed to and events can be sent when the subaccounts are
// indexed to an existing subscription.
Expand Down Expand Up @@ -694,6 +700,12 @@ export class Subscriptions {
blockHeight,
});
} catch (error) {
logger.error({
at: 'getInitialResponseForParentSubaccountSubscription',
message: 'Error on getting initial response for subaccount subscription',
id,
error,
});
// The subaccounts API endpoint returns a 404 for subaccounts that are not indexed, however
// such subaccounts can be subscribed to and events can be sent when the subaccounts are
// indexed to an existing subscription.
Expand Down

0 comments on commit 47985bd

Please sign in to comment.