Spaces:
Paused
Paused
File size: 346 Bytes
fb4d8fe | 1 2 3 4 5 6 7 | import { createSubsystemLogger } from "../../logging/subsystem.js";
export const whatsappLog = createSubsystemLogger("gateway/channels/whatsapp");
export const whatsappInboundLog = whatsappLog.child("inbound");
export const whatsappOutboundLog = whatsappLog.child("outbound");
export const whatsappHeartbeatLog = whatsappLog.child("heartbeat");
|