Skip to content

Instantly share code, notes, and snippets.

@mrvdb
Last active August 29, 2015 14:01
Show Gist options
  • Save mrvdb/dcdd545c88fef766c132 to your computer and use it in GitHub Desktop.
Save mrvdb/dcdd545c88fef766c132 to your computer and use it in GitHub Desktop.
grep INCOMING ERROR debug.log | sort | uniq -c
grep: ERROR: No such file or directory
424 debug.log:INCOMING ERROR: height > getBestHeight
3857 debug.log:INCOMING ERROR: invalid signature
4 debug.log:INCOMING ERROR: invalid token
4792 debug.log:INCOMING ERROR: invalid transaction id
8 debug.log:INCOMING ERROR: message too big
1 debug.log:INCOMING ERROR: missing 'y' entry
Roughly from : 2014-02-15 09:00
to : 2014-05-16 13.00
@kseistrup
Copy link

Mine has

$ grep 'INCOMING ERROR' debug.log | sort | uniq -c | sort -nr
     14 INCOMING ERROR: invalid transaction id
      7 INCOMING ERROR: height > getBestHeight

when I said (on twister) that I didn't see any incoming errors I guess they were just drowned out by non-error lines.

@Erkan-Yilmaz
Copy link

can you both please specify in what time frame this is?

@kseistrup
Copy link

Mine is within a couple of hours as I just restarted twister in order to reclaim some RAM, and my restart script truncates debug.log to zero bytes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment