Updated Branches: refs/heads/4.1 3d8e582d3 -> 2fd8b15d6
Transaction: Fix better debug message Signed-off-by: Rohit Yadav <[email protected]> (cherry picked from commit 9cf5f9d78046e3480fb5521ab60be7909fa60f60) Signed-off-by: Rohit Yadav <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/2fd8b15d Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/2fd8b15d Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/2fd8b15d Branch: refs/heads/4.1 Commit: 2fd8b15d6457077aefa2d9e38e3883858d8cd646 Parents: 482e939 Author: Rohit Yadav <[email protected]> Authored: Tue Feb 5 12:42:33 2013 +0530 Committer: Rohit Yadav <[email protected]> Committed: Tue Feb 5 12:44:21 2013 +0530 ---------------------------------------------------------------------- utils/src/com/cloud/utils/db/Transaction.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/2fd8b15d/utils/src/com/cloud/utils/db/Transaction.java ---------------------------------------------------------------------- diff --git a/utils/src/com/cloud/utils/db/Transaction.java b/utils/src/com/cloud/utils/db/Transaction.java index 8bc2a04..d596de2 100755 --- a/utils/src/com/cloud/utils/db/Transaction.java +++ b/utils/src/com/cloud/utils/db/Transaction.java @@ -1020,7 +1020,7 @@ public class Transaction { s_logger.fatal("Unable to load db properties file, pl. check the classpath and file path configuration", e); return; } catch (NullPointerException e) { - s_logger.fatal("Unable to load and read db properties file " + propsFileName + "Error: " + e); + s_logger.fatal("Unable to locate db properties file within classpath or absolute path: " + propsFileName); return; }
