You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yarn-dev@hadoop.apache.org by Jasson Chenwei <yn...@gmail.com> on 2017/08/03 23:38:48 UTC

How to enable debug logger in Resource Manager

hi, all

I found a lot of codes in YARN's Resource Manager:

if (LOG.isDebugEnabled()) {
        LOG.debug(...)

}

My question is how to enable this to log more information.


Thanks!

Wei

Re: How to enable debug logger in Resource Manager

Posted by Yufei Gu <fl...@gmail.com>.
Set log level to DEBUG to enable it.
There are several ways to set the log level of a class. My favorite way is
to change it by visiting https://RM-address:port/logLevel.

Best,

Yufei

On Thu, Aug 3, 2017 at 4:38 PM, Jasson Chenwei <yn...@gmail.com>
wrote:

> hi, all
>
> I found a lot of codes in YARN's Resource Manager:
>
> if (LOG.isDebugEnabled()) {
>         LOG.debug(...)
>
> }
>
> My question is how to enable this to log more information.
>
>
> Thanks!
>
> Wei
>