7 lines
351 B
TypeScript
7 lines
351 B
TypeScript
import { createSubsystemLogger } from "openclaw/plugin-sdk/runtime-env";
|
|
|
|
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");
|