I'm running a parity supernode, recently switched from geth because parity seems to perform much better, even in archive mode.
To log the standard output of geth, I used to run:
geth [options] console 2>>/tmp/geth.log
I tried to run similar command for parity, but it wont log the standard out.
~ $ parity --help | grep -A1 log
-l --logging LOGGING Specify the logging level. Must conform to the same
format as RUST_LOG.
Natively, parity allows to set a logging level. But how can I make parity actually write logs?
grep -R -o -E 'debug!\(target\: \"[a-z_]*\"' * | cut -d'"' -f2 | sort | uniqto create a similar list a year later (for thedebuglog level). Did you use something like this?.. – Noel Maersk May 11 '18 at 17:24