Updated Branches: refs/heads/master 7795cfd75 -> 9cf5f9d78
Transaction: Fix better debug message 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/9cf5f9d7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/9cf5f9d7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/9cf5f9d7 Branch: refs/heads/master Commit: 9cf5f9d78046e3480fb5521ab60be7909fa60f60 Parents: 7795cfd Author: Rohit Yadav <[email protected]> Authored: Tue Feb 5 12:42:33 2013 +0530 Committer: Rohit Yadav <[email protected]> Committed: Tue Feb 5 12:42:33 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/9cf5f9d7/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; }
