添加函数调试日志

This commit is contained in:
ZhanGSKen
2025-11-12 21:18:14 +08:00
parent e6ce490436
commit fbf5ceadc7

View File

@@ -79,6 +79,7 @@ public class ToastUtils {
* @param message 吐司展示的文本内容(非空)
*/
public static void show(String message) {
LogUtils.d(TAG, "show()");
if (message == null || message.isEmpty()) {
return; // 空消息直接返回,避免无效显示
}