mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-14 11:30:41 +00:00
7 lines
346 B
TypeScript
7 lines
346 B
TypeScript
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");
|