killbill-memoizeit

osgi: add warning if the jruby jar cannot be found Signed-off-by:

10/23/2013 10:51:20 PM

Details

diff --git a/osgi/src/main/java/com/ning/billing/osgi/FileInstall.java b/osgi/src/main/java/com/ning/billing/osgi/FileInstall.java
index c318727..88066fa 100644
--- a/osgi/src/main/java/com/ning/billing/osgi/FileInstall.java
+++ b/osgi/src/main/java/com/ning/billing/osgi/FileInstall.java
@@ -187,6 +187,7 @@ public class FileInstall {
         if (new File(expectedPath).isFile()) {
             return expectedPath;
         } else {
+            logger.warn("Unable to find the JRuby bundle at {}, ruby plugins won't be started!", expectedPath);
             return null;
         }
     }