log[path,java.lang.xxx|error]
要匹配关键字段 java.lang.xxx与error
在正则中 . 会代表任意一个字符。

使用\转义
java.lang.xxx
即可匹配日志中的.

/不行