Created on 05-15-2017 03:26 PM - edited 09-16-2022 04:36 AM
Looking to see if LOG.isDebugEnabled can be switch "ON" when running shell command that invokes a Java Class object. I don't want to go about messing with Ambari or logj4 for a quick debug test. Is this possible?
Trying to debug:
yarn scmadmin
Created 05-15-2017 03:32 PM
Do you mean client side logging?
Can you try exporting the following variable first and then try running your command:
export HADOOP_ROOT_LOGGER=debug,console
.
Similarly for Yarn:
export YARN_ROOT_LOGGER=DEBUG,console
.
Created 05-15-2017 03:32 PM
Do you mean client side logging?
Can you try exporting the following variable first and then try running your command:
export HADOOP_ROOT_LOGGER=debug,console
.
Similarly for Yarn:
export YARN_ROOT_LOGGER=DEBUG,console
.
Created 05-15-2017 06:41 PM
The second was what I was looking for. Thanks!