Log Parse: Get Blockchain Date
-
My round about way for monitoring the Blockchain sync on my new FTC node
Running CentOS 7
You might wanna change “DIR” to match what you have
watch -t -n 2 --color 'tail -n 60 /DIR/.feathercoin/debug.log | grep -Eo "date=[[:digit:]]{4}-[[:digit:]]{2}-[[:digit:]]{2}[[:space:]][[:digit:]]{2}:[[:digit:]]{2}"'
will give you some thing like this:
it will update every 2 seconds with the last BlockChain Date.
Edit: fixed the command