如何在运行时禁用 JerseyClient 请求日志记录?
How to disable JerseyClient request logging in runtime?
如何在运行时禁用 JerseyClient 请求日志?
我有这样的代码:
client = ClientBuilder.newClient();
client.register(new LoggingFeature(LOGGER, level.INFO, null, null))
我不知道如何在运行时禁用日志记录?也许有一些配置参数可以使用?
如果您尝试更改日志记录级别,只需将 Level.INFO
更改为 Level.WARNING
或更高级别。 (更多关于 java.util.logging.Level)。
或者注释第二行(如果不设置logger,客户端将无法登录)
如何在运行时禁用 JerseyClient 请求日志?
我有这样的代码:
client = ClientBuilder.newClient();
client.register(new LoggingFeature(LOGGER, level.INFO, null, null))
我不知道如何在运行时禁用日志记录?也许有一些配置参数可以使用?
如果您尝试更改日志记录级别,只需将 Level.INFO
更改为 Level.WARNING
或更高级别。 (更多关于 java.util.logging.Level)。
或者注释第二行(如果不设置logger,客户端将无法登录)