Log System Settings
In the config.xml file, you can modify the section depending on how much information you need displayed from the kernel.
Log Levels
There are five log levels available for each of the modules (from least to most, where TRACE gets every log printout):
- ERROR
- WARN
- INFO
- DEBUG
- TRACE
If you don't want the log to be stored in your disk (only printed in terminal), set to false:
<log>
<!--Enable/Disable logback service; if disabled, output will not be logged -->
<log-file>false</log-file>
<!--Sets the physical location on disk where log files will be stored.-->
<log-path>log</log-path>
<GEN>INFO</GEN>
<VM>ERROR</VM>
<SYNC>INFO</SYNC>
<CONS>INFO</CONS>
<DB>ERROR</DB>
<API>INFO</API>
<P2P>INFO</P2P>
<TX>INFO</TX>
<TXPOOL>INFO</TXPOOL>
</log>
Updated almost 7 years ago