namespace ServiceLib.Services.CoreConfig; public partial class CoreConfigV2rayService { private void GenLog() { try { var config = context.AppConfig; if (config.CoreBasicItem.LogEnabled) { var dtNow = DateTime.Now; _coreConfig.log.loglevel = config.CoreBasicItem.Loglevel; _coreConfig.log.access = Utils.GetLogPath($"Vaccess_{dtNow:yyyy-MM-dd}.txt"); _coreConfig.log.error = Utils.GetLogPath($"Verror_{dtNow:yyyy-MM-dd}.txt"); } else { _coreConfig.log.loglevel = config.CoreBasicItem.Loglevel; _coreConfig.log.access = null; _coreConfig.log.error = null; } } catch (Exception ex) { Logging.SaveLog(_tag, ex); } } }