如何在运行时禁用JerseyClient请求记录?
我有这样的代码:
client = ClientBuilder.newClient();
client.register(new LoggingFeature(LOGGER, level.INFO, null, null))
我无法弄清楚如何在运行时禁用日志记录?也许有一些配置参数可供使用?
答案 0 :(得分:0)
如果您尝试更改日志记录级别,只需将Level.INFO
更改为Level.WARNING
或更高级别。 (更多关于java.util.logging.Level)。
或评论第二行(如果您未设置记录器,则客户端将无法记录)。