sentinel如何去掉打印日志?

Blade 未结 1 8

一、该问题的重现步骤是什么?


开源版4.3.0 微服务


首先我把LaucherServiceImpl 中的

INFO 10376 --- [)-000.000.00.00] c.a.c.s.e.SentinelHealthIndicator        :

PropsUtil.setProperty(props, "spring.cloud.sentinel.transport.dashboard", LauncherConstant.sentinelAddr(profile));

这个配置我注释掉了;
然后我执行了这个包的clean  install 

我引入这个包的工程执行了 clean  package 还是会打印下边这个警告日志; 后来我又把整个项目给package了,也是会打印下边的日志。这个要怎么去掉。


Find sentinel dashboard server list: [Endpoint{protocol=HTTP, host='127.0.0.1, port=8858}]


WARN 10376 --- [)-000.000.00.00] c.a.c.s.e.SentinelHealthIndicator        : Sentinel dashboard heartbeat message can't be sent to the dashboard servers [Endpoint{protocol=HTTP, host='127.0.0.1, port=8858}] one of them can't be connected



二、你期待的结果是什么?实际看到的又是什么?


三、你正在使用的是什么产品,什么版本?在什么操作系统上?


四、请提供详细的错误堆栈信息,这很重要。


五、若有更多详细信息,请在下面提供。

1条回答
  • 配置这个看看

    spring:
      cloud:
        sentinel:
          enabled: false


    0 讨论(0)
提交回复