我正在使用Spring Tools Suite 4开发Spring Boot应用程序。我不知道为什么,但是大多数日志消息都以红色突出显示。只有spring boot徽标具有正常的颜色突出显示。
我有以下设置:
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")
我错过了什么吗?谢谢您的帮助
答案 0 :(得分:0)
我发现了问题。我期望标准的Spring Boot Logging到位(即Logback)。但是不包括此库。因此,通过添加此依赖项,所有内容都可以发挥作用。
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>