@@ -739,25 +739,25 @@ logging messages. They should be used as follows:
739739 Note that ` LogPrint(BCLog::CATEGORY, fmt, params...) ` is a deprecated
740740 alias for ` LogDebug ` .
741741
742- - ` LogInfo(fmt, params...) ` should only be used rarely, eg for startup
742+ - ` LogInfo(fmt, params...) ` should only be used rarely, e.g. for startup
743743 messages or for infrequent and important events such as a new block tip
744744 being found or a new outbound connection being made. These log messages
745- are unconditional so care must be taken that they can't be used by an
745+ are unconditional, so care must be taken that they can't be used by an
746746 attacker to fill up storage. Note that ` LogPrintf(fmt, params...) ` is
747747 a deprecated alias for ` LogInfo ` .
748748
749749- ` LogError(fmt, params...) ` should be used in place of ` LogInfo ` for
750750 severe problems that require the node (or a subsystem) to shut down
751- entirely (eg , insufficient storage space).
751+ entirely (e.g. , insufficient storage space).
752752
753753- ` LogWarning(fmt, params...) ` should be used in place of ` LogInfo ` for
754754 severe problems that the node admin should address, but are not
755- severe enough to warrant shutting down the node (eg , system time
755+ severe enough to warrant shutting down the node (e.g. , system time
756756 appears to be wrong, unknown soft fork appears to have activated).
757757
758- - `LogTrace(BCLog::CATEGORY, fmt, params...) should be used in place of
758+ - ` LogTrace(BCLog::CATEGORY, fmt, params...) ` should be used in place of
759759 ` LogDebug ` for log messages that would be unusable on a production
760- system, eg due to being too noisy in normal use, or too resource
760+ system, e.g. due to being too noisy in normal use, or too resource
761761 intensive to process. These will be logged if the startup
762762 options ` -debug=category -loglevel=category:trace ` or `-debug=1
763763 -loglevel=trace` are selected.
0 commit comments