
# 场景五：使用default传参为日志不存在的字段填充默认值
- 原始日志
  ```
  {
    "content": "this is a log"
  }
  ```
  
- 加工规则：
  ```
  e_if(e_not_has("type"), e_set("type", "log"))
  ```
  
- 加工结果
  ```
  {
  "type": "log",
  "content": "this is a log"
  }
  ```
  
 
