@@ -739,25 +739,25 @@ logging messages. They should be used as follows:
739
739
Note that ` LogPrint(BCLog::CATEGORY, fmt, params...) ` is a deprecated
740
740
alias for ` LogDebug ` .
741
741
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
743
743
messages or for infrequent and important events such as a new block tip
744
744
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
746
746
attacker to fill up storage. Note that ` LogPrintf(fmt, params...) ` is
747
747
a deprecated alias for ` LogInfo ` .
748
748
749
749
- ` LogError(fmt, params...) ` should be used in place of ` LogInfo ` for
750
750
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).
752
752
753
753
- ` LogWarning(fmt, params...) ` should be used in place of ` LogInfo ` for
754
754
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
756
756
appears to be wrong, unknown soft fork appears to have activated).
757
757
758
- - `LogTrace(BCLog::CATEGORY, fmt, params...) should be used in place of
758
+ - ` LogTrace(BCLog::CATEGORY, fmt, params...) ` should be used in place of
759
759
` 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
761
761
intensive to process. These will be logged if the startup
762
762
options ` -debug=category -loglevel=category:trace ` or `-debug=1
763
763
-loglevel=trace` are selected.
0 commit comments