d static method
Implementation
static void d({String? biz, required String msg, String? docUrl}) {
if (_shouldLog(AntdLogLevel.debug)) {
_printLog('Debug', biz, msg, docUrl);
if (_enableStackTrace) {
debugPrint("[Antd Logs][Debug]:以下是该模块的堆栈");
debugPrintStack();
}
}
}