feat: set clash log level default to info

This commit is contained in:
oomeow
2025-10-12 13:18:26 +08:00
parent 5ce95d74a9
commit 0b8b3c5a1a
2 changed files with 2 additions and 1 deletions

View File

@@ -25,6 +25,7 @@
- 为代理延迟测试的 URL 设置增加了保护以及添加了安全的备用 URL - 为代理延迟测试的 URL 设置增加了保护以及添加了安全的备用 URL
- 更新了 Wayland 合成器检测逻辑,从而在 Hyprland 会话中保留原生 Wayland 后端 - 更新了 Wayland 合成器检测逻辑,从而在 Hyprland 会话中保留原生 Wayland 后端
- 改进 Windows 和 Unix 的 服务连接方式以及权限,避免无法连接服务或内核 - 改进 Windows 和 Unix 的 服务连接方式以及权限,避免无法连接服务或内核
- 修改内核默认日志级别为 Info
### 🐞 修复问题 ### 🐞 修复问题

View File

@@ -66,7 +66,7 @@ impl IClashTemp {
map.insert("mixed-port".into(), 7897.into()); map.insert("mixed-port".into(), 7897.into());
map.insert("socks-port".into(), 7898.into()); map.insert("socks-port".into(), 7898.into());
map.insert("port".into(), 7899.into()); map.insert("port".into(), 7899.into());
map.insert("log-level".into(), "warning".into()); map.insert("log-level".into(), "info".into());
map.insert("allow-lan".into(), false.into()); map.insert("allow-lan".into(), false.into());
map.insert("ipv6".into(), true.into()); map.insert("ipv6".into(), true.into());
map.insert("mode".into(), "rule".into()); map.insert("mode".into(), "rule".into());