Added a watchLog tool
diff --git a/tools/dev/watchLog b/tools/dev/watchLog
new file mode 100755
index 0000000..f138b73
--- /dev/null
+++ b/tools/dev/watchLog
@@ -0,0 +1,11 @@
+#!/bin/bash
+#------------------------------------------------------------------------------
+# Continuously watches the Apache Karaf log; survives 'karaf clean'
+#------------------------------------------------------------------------------
+KARAF_LOG=${KARAF_LOG:-~/apache-karaf-3.0.1/data/log/karaf.log}
+
+while true; do
+    [ ! -f $KARAF_LOG ] && sleep 2 && continue
+    tail -n 512 -f -F $KARAF_LOG
+done
+