Spring 云数据流日志级别

Spring Cloud Data Flow Log Level

我在 kubernetes 上使用 2.7.0-RC1 Spring 云数据流。尽管我们将参数 --logging.level.org.springframework.cloud.deployer.spi.local=DEBUG 传递给 SCDF 运行 命令,但我仍在查看 INFO 级别的错误。

我们如何将日志级别更改为 DEBUG?

logging.level.org.springframework.cloud.deployer.spi.local标志用于设置local-deployer的日志级别。您的部署程序在 Kubernetes 上。

Deployment Logs 部分的 Spring Cloud Dataflow 文档中,有适用于其他部署者的等效设置。 请参阅此部分:

Similar to the local-deployer and cloudfoundry-deployer options as discussed above, there are equivalent settings available for Apache YARN, Apache Mesos and Kubernetes variants, too. Check out the respective SPI implementations to find out more details about the packages to configure for logging.

由于你是在 Kubernetes 上部署,如果你想查看部署日志,试试这个标志(注意:我没有测试过):

--logging.level.org.springframework.cloud.deployer.spi.kubernetes=DEBUG

您的问题未指定您是要查看部署程序日志还是 application/stream 日志。如果您想查看流式应用程序日志,请参阅 Application Logs 上的 link。