You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by sv...@apache.org on 2016/04/21 10:45:50 UTC

[3/5] brooklyn-server git commit: Log full OSGi cache path

Log full OSGi cache path


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/512e79d3
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/512e79d3
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/512e79d3

Branch: refs/heads/master
Commit: 512e79d3332dde86cbe5e8748bd862b4e1259966
Parents: e006088
Author: Sam Corbett <sa...@cloudsoftcorp.com>
Authored: Thu Apr 14 16:03:55 2016 +0100
Committer: Sam Corbett <sa...@cloudsoftcorp.com>
Committed: Thu Apr 14 16:03:55 2016 +0100

----------------------------------------------------------------------
 .../java/org/apache/brooklyn/core/server/BrooklynServerPaths.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/512e79d3/core/src/main/java/org/apache/brooklyn/core/server/BrooklynServerPaths.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/brooklyn/core/server/BrooklynServerPaths.java b/core/src/main/java/org/apache/brooklyn/core/server/BrooklynServerPaths.java
index 755bc8e..27d6343 100644
--- a/core/src/main/java/org/apache/brooklyn/core/server/BrooklynServerPaths.java
+++ b/core/src/main/java/org/apache/brooklyn/core/server/BrooklynServerPaths.java
@@ -266,7 +266,7 @@ public class BrooklynServerPaths {
     public static File getOsgiCacheDirCleanedIfNeeded(ManagementContext mgmt) {
         File cacheDirF = getOsgiCacheDir(mgmt);
         boolean clean = isOsgiCacheForCleaning(mgmt, cacheDirF);
-        log.debug("OSGi cache dir computed as "+cacheDirF.getName()+" ("+
+        log.debug("OSGi cache dir computed as "+cacheDirF.getAbsolutePath()+" ("+
             (cacheDirF.exists() ? "already exists" : "does not exist")+", "+
             (clean ? "cleaning now (and on exit)" : "cleaning not requested"));