搜索结果
查询Tags标签: logPath,共有 5条记录-
NGINX的六种优化方式
①nginx并发量优化 nginx.conf文件内work_process 是nginx进程数量这个数目最多可以修改为和cpu内核数目一致。 event下的work_connections 可以修改并发数目 ②nginx数据包头优化 客户端发送数据包给到web服务器内存再打开,在配置文件里可以修改nginx使用多大的内存打开…
2022/4/18 7:12:46 人评论 次浏览 -
Spring Boot logback springProperty 设置默认值
springProperty 当没有读取到source字段中设置的log.path值时,设置为defaultValue字段中的${user.dir}/logs变量值。 <springProperty scope="context" name="logPath" source="log.path" defaultValue="${user.dir}/logs"/&…
2021/11/9 6:10:21 人评论 次浏览 -
Spring Boot logback springProperty 设置默认值
springProperty 当没有读取到source字段中设置的log.path值时,设置为defaultValue字段中的${user.dir}/logs变量值。 <springProperty scope="context" name="logPath" source="log.path" defaultValue="${user.dir}/logs"/&…
2021/11/9 6:10:21 人评论 次浏览 -
C#打印文本日志帮助类LogHelper
public static class LogHelper{public static void WriteLog(string msg){string filePath = AppDomain.CurrentDomain.BaseDirectory + "log";if (!Directory.Exists(filePath)){Directory.CreateDirectory(filePath);}string logPath = AppDomain.CurrentDom…
2021/7/15 11:07:20 人评论 次浏览 -
C#打印文本日志帮助类LogHelper
public static class LogHelper{public static void WriteLog(string msg){string filePath = AppDomain.CurrentDomain.BaseDirectory + "log";if (!Directory.Exists(filePath)){Directory.CreateDirectory(filePath);}string logPath = AppDomain.CurrentDom…
2021/7/15 11:07:20 人评论 次浏览