Improve logging
diff --git a/.gitignore b/.gitignore
index dbe1aef..01a5e53 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,7 +20,7 @@
 
 # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
 hs_err_pid*
-
+.DS_store
 target
 .settings
 .classpath
@@ -28,4 +28,3 @@
 paho*
 generated
 cnf
-
diff --git a/rcomp-app/etc/org.ops4j.pax.logging.cfg b/rcomp-app/etc/org.ops4j.pax.logging.cfg
new file mode 100644
index 0000000..066f499
--- /dev/null
+++ b/rcomp-app/etc/org.ops4j.pax.logging.cfg
@@ -0,0 +1,8 @@
+log4j.rootLogger=INFO, file
+
+
+log4j.appender.file=org.apache.log4j.RollingFileAppender
+log4j.appender.file.File=./target/logging.log
+
+log4j.appender.file.layout=org.apache.log4j.PatternLayout
+log4j.appender.file.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n
diff --git a/rcomp-app/pom.xml b/rcomp-app/pom.xml
index 0dfc568..3acedc0 100644
--- a/rcomp-app/pom.xml
+++ b/rcomp-app/pom.xml
@@ -45,7 +45,7 @@
             <version>${rcomp.version}</version>
         </dependency>
 
-		<!-- Basic Felix bundles -->
+        <!-- Basic Felix bundles -->
         <dependency>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.framework</artifactId>
@@ -136,7 +136,7 @@
         <dependency>
             <groupId>org.ops4j.pax.logging</groupId>
             <artifactId>pax-logging-service</artifactId>
-            <version>1.8.5</version>
+            <version>1.10.1</version>
         </dependency>
 
         <dependency>
@@ -204,23 +204,6 @@
             <artifactId>commons-collections</artifactId>
             <version>3.2.2</version>
         </dependency>
-<!-- 
-		<dependency>
-		    <groupId>org.apache.activemq</groupId>
-		    <artifactId>activemq-osgi</artifactId>
-		    <version>5.15.0</version>
-		</dependency>
-		<dependency>
-		    <groupId>org.ow2.asm</groupId>
-		    <artifactId>asm-all</artifactId>
-		    <version>5.2</version>
-		</dependency>
-		<dependency>
-		    <groupId>org.apache.aries.blueprint</groupId>
-		    <artifactId>org.apache.aries.blueprint.core</artifactId>
-		    <version>1.8.2</version>
-		</dependency>
-         -->
     </dependencies>
 
     <build>
diff --git a/rcomp-app/rcomp-example.bndrun b/rcomp-app/rcomp-example.bndrun
index 6f0f767..2446c61 100644
--- a/rcomp-app/rcomp-example.bndrun
+++ b/rcomp-app/rcomp-example.bndrun
@@ -31,5 +31,15 @@
 	felix.fileinstall.noInitialDelay=true,\
 	felix.fileinstall.enableConfigSave=false
 -runrequires: \
-	osgi.identity;filter:='(osgi.identity=rcomp-examples)',\
-	osgi.identity;filter:='(osgi.identity=rcomp-feature-shell)'
+	osgi.identity;filter:='(osgi.identity=rcomp-feature-shell)',\
+	osgi.identity;filter:='(osgi.identity=org.ops4j.pax.logging.pax-logging-service)'
+-runbundles: \
+	org.apache.felix.bundlerepository;version='[2.0.10,2.0.11)',\
+	org.apache.felix.configadmin;version='[1.8.8,1.8.9)',\
+	org.apache.felix.gogo.command;version='[1.0.0,1.0.1)',\
+	org.apache.felix.gogo.jline;version='[1.0.6,1.0.7)',\
+	org.apache.felix.gogo.runtime;version='[1.0.0,1.0.1)',\
+	org.jline;version='[3.3.1,3.3.2)',\
+	rcomp-feature-shell;version='[1.0.0,1.0.1)',\
+	org.ops4j.pax.logging.pax-logging-api;version='[1.10.1,1.10.2)',\
+	org.ops4j.pax.logging.pax-logging-service;version='[1.10.1,1.10.2)'
\ No newline at end of file