Spring Tool Suite 4控制台颜色问题

时间:2019-06-11 16:20:41

标签: console highlight spring-tools-4

我正在使用Spring Tools Suite 4开发Spring Boot应用程序。我不知道为什么,但是大多数日志消息都以红色突出显示。只有spring boot徽标具有正常的颜色突出显示。

我有以下设置:

  • STS-4.2.2
  • Maven 3.6.1
  • import requests import serial def barcode(): with serial.Serial('/dev/serial0', 9600, timeout=1) as port: while True: print(port.name) line = port.readline() print(line) url = "https://api.upcdatabase.org/product/%s/%s" % (line, api_key) headers = { 'cache-control': "no-cache", } response = requests.request("GET", url, headers=headers) print("-----" * 5) print(line) print(json.dumps(response.json(), indent=2)) print("-----" * 5 + "\n")
  • 具有旧版Powershell版本的Windows 7(即使重要)
  • Eclipse控制台设置是标准的(只有syserr应该创建红色事件)。

我错过了什么吗?谢谢您的帮助

1 个答案:

答案 0 :(得分:0)

我发现了问题。我期望标准的Spring Boot Logging到位(即Logback)。但是不包括此库。因此,通过添加此依赖项,所有内容都可以发挥作用。

<dependency>
   <groupId>ch.qos.logback</groupId>
   <artifactId>logback-classic</artifactId>
</dependency>