diff --git a/src/services/main/index.ts b/src/services/main/index.ts index 8f8be5ce..4fce8375 100644 --- a/src/services/main/index.ts +++ b/src/services/main/index.ts @@ -120,9 +120,12 @@ export default class { triggerSubs(userId: string, op: Types.UserOperation) { const sub = this.paymentSubs[userId] + const log = getLogger({ userId }) if (!sub) { + log("no sub found for user") return } + log("notifyng user of payment") sub(op) }