while scanning for the next token found character '%' that cannot start any token. (Do not use % for

Caused by: org.yaml.snakeyaml.scanner.ScannerException: while scanning for the next token
found character '%' that cannot start any token. (Do not use % for indentation)

springboot配置日志提示开头不能用%:

logging:
  #配置日志文件路径
  level:
    root: info
    xatu.zsl: debug #不同目录下的日志可配置不同级别
    org.springfromework.web: info
    org.hibernate: error
  #采用相对路径方式将日志文件输出到【log\myspringboot.log】
  file: log\myspringboot.log
  # 在控制台输出的日志格式
  pattern:
    console: %d{yyyy-MM-dd hh:mm:ss} [%thread] %-5level %logger{50} - %msg%n
  # 指定文件中日志输出的格式
    file: %d{yyyy-MM-dd} === [%thread] === %-5level === %logger{50} === - %msg%n

解决办法:

yml配置文件,提示不能以 % 开头。
解决办法,首尾加上 ' 单引号:

logging:
  #配置日志文件路径
  level:
    root: info
    xatu.zsl: debug #不同目录下的日志可配置不同级别
    org.springfromework.web: info
    org.hibernate: error
  #采用相对路径方式将日志文件输出到【log\myspringboot.log】
  file: log\myspringboot.log
  # 在控制台输出的日志格式
  pattern:
    console: '%d{yyyy-MM-dd hh:mm:ss} [%thread] %-5level %logger{50} - %msg%n'
  # 指定文件中日志输出的格式
    file: '%d{yyyy-MM-dd} === [%thread] === %-5level === %logger{50} === - %msg%n'

 

你可能感兴趣的:(while scanning for the next token found character '%' that cannot start any token. (Do not use % for)