Bohdan Kazydub created DRILL-7764:
-------------------------------------
Summary: Cleanup warning messages in GuavaPatcher class
Key: DRILL-7764
URL: https://issues.apache.org/jira/browse/DRILL-7764
Project: Apache Drill
Issue Type: Bug
Reporter: Bohdan Kazydub
Assignee: Bohdan Kazydub
Currently GuavaPatcher contains
{code}
logger.warn("Unable to patch Guava classes.", e);
{code}
which outputs whole exception stack trace to logs which is unnecessary alarming.
This log message will be changed to
{code}
logger.warn("Unable to patch Guava classes: {}", e.getMessage());
logger.debug("Exception:", e);
{code}
logging the stack trace only in debug mode.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)
|