How to use the WMLogger's instance
1. Import the module
import { WMLogger } from '@mobilize/logging';2. Using methods
const msg = "LOG MESSAGE";
WMLogger.instance().debug(msg);
WMLogger.instance().info(msg);
WMLogger.instance().warn(msg);
WMLogger.instance().error(msg);Was this helpful?