YARN-3191. Log object should be initialized with its own class. Contributed by Rohith.
This commit is contained in:
parent
871cb56152
commit
6a49e58cb8
@ -582,6 +582,9 @@ Release 2.7.0 - UNRELEASED
|
||||
YARN-3104. Fixed RM to not generate new AMRM tokens on every heartbeat
|
||||
between rolling and activation. (Jason Lowe via jianhe)
|
||||
|
||||
YARN-3191. Log object should be initialized with its own class. (Rohith via
|
||||
aajisaka)
|
||||
|
||||
Release 2.6.0 - 2014-11-18
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -73,7 +73,7 @@ public class ApplicationImpl implements Application {
|
||||
private final WriteLock writeLock;
|
||||
private final Context context;
|
||||
|
||||
private static final Log LOG = LogFactory.getLog(Application.class);
|
||||
private static final Log LOG = LogFactory.getLog(ApplicationImpl.class);
|
||||
|
||||
private LogAggregationContext logAggregationContext;
|
||||
|
||||
|
@ -99,7 +99,7 @@ public class ContainerImpl implements Container {
|
||||
/** The NM-wide configuration - not specific to this container */
|
||||
private final Configuration daemonConf;
|
||||
|
||||
private static final Log LOG = LogFactory.getLog(Container.class);
|
||||
private static final Log LOG = LogFactory.getLog(ContainerImpl.class);
|
||||
private final Map<LocalResourceRequest,List<String>> pendingResources =
|
||||
new HashMap<LocalResourceRequest,List<String>>();
|
||||
private final Map<Path,List<String>> localizedResources =
|
||||
|
Loading…
Reference in New Issue
Block a user