Support Questions

Find answers, ask questions, and share your expertise

Can LOG.isDebugEnabled for debugging commands be set manually on the CLI?

avatar
Contributor

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

1 ACCEPTED SOLUTION

avatar
Master Mentor

@Michael DeGuzis

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

.

View solution in original post

2 REPLIES 2

avatar
Master Mentor

@Michael DeGuzis

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

.

avatar
Contributor

The second was what I was looking for. Thanks!