aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/dev/bin/onos-local-log
blob: a17d3b9cb9a18f7976b7283f920ba035eea12998 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# ----------------------------------------------------------------------------
# Continuously watches the Apache Karaf log; survives 'karaf clean'
# ----------------------------------------------------------------------------
KARAF_LOG=${KARAF_LOG:-~/apache-karaf-$KARAF_VERSION/data/log/karaf.log}

while true; do
    [ ! -f $KARAF_LOG ] && sleep 2 && continue
    tail -n 512 -f -F $KARAF_LOG
done