How do I reduce the loglevel on rippled?

1

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).

lid

Posted 2014-03-30T17:53:20.220

Reputation: 173

Answers

3

You can put the following in your rippled.cfg file:

[rpc_startup]
{ "command" : "log_level", "severity" : "error" }

David Schwartz

Posted 2014-03-30T17:53:20.220

Reputation: 46 931

Thanks! I see that the wiki was updated with the correct severities.lid 2014-03-31T22:08:34.323