By default, rippled seems to log at the NFO level, which spits out many megabytes of log files each day. How do I reduce this level? According to the Ripple wiki, we can edit pass arguments to rippled when starting it, or edit the configuration file via [rpc_startup], but neither of these methods had any effect for me (on v0.23.0).
Asked
Active
Viewed 219 times
1 Answers
3
You can put the following in your rippled.cfg file:
[rpc_startup]
{ "command" : "log_level", "severity" : "error" }
David Schwartz
- 51,308
- 6
- 106
- 177
-
Thanks! I see that the wiki was updated with the correct severities. – lid Mar 31 '14 at 22:08