configure static method
Implementation
static void configure({
AntdLogLevel level = AntdLogLevel.debug,
bool enableStackTrace = true,
}) {
_currentLevel = level;
_enableStackTrace = enableStackTrace;
if (kDebugMode) {
debugPrint(
'[Antd Logs] 配置完成 - 级别: ${level.name}, 堆栈跟踪: ${enableStackTrace ? "启用" : "禁用"}');
}
}