From 82c62a2d51d7a6cc0376f3b38a73a3f28e3ad25d Mon Sep 17 00:00:00 2001 From: tickstep Date: Sun, 17 Mar 2024 14:30:06 +0800 Subject: [PATCH] disable file record as default --- internal/config/pan_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/pan_config.go b/internal/config/pan_config.go index 0a9f054..75f1695 100644 --- a/internal/config/pan_config.go +++ b/internal/config/pan_config.go @@ -299,7 +299,7 @@ func (c *PanConfig) initDefaultConfig() { c.DeviceId = RandomDeviceId() // 生成默认客户端ID c.DeviceName = DefaultDeviceName c.ClientId = DefaultClientId - c.FileRecordConfig = "1" // 默认开启 + c.FileRecordConfig = "2" // 默认关闭 c.PreferIPType = "ipv4" // 默认优先IPv4 }