YARN-7093. Improve log message in ResourceUtils. (Sunil G via wangda)

Change-Id: I88928a747ee3eec17bc76fb71e9aaa632d091f0f
(cherry picked from commit 53df3eac50)
This commit is contained in:
Wangda Tan 2017-08-24 10:44:28 -07:00 committed by Daniel Templeton
parent 57bbdbeb80
commit 00fcc8593b
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ public class ResourceUtils {
initializedResources = true; initializedResources = true;
} catch (FileNotFoundException fe) { } catch (FileNotFoundException fe) {
LOG.info("Unable to find '" + resourceFile LOG.info("Unable to find '" + resourceFile
+ "'. Falling back to memory and vcores as resources", fe); + "'. Falling back to memory and vcores as resources.");
initializeResourcesMap(conf); initializeResourcesMap(conf);
initializedResources = true; initializedResources = true;
} }