.tutorial

git-svn-id: svn://ultimatepp.org/upp/trunk@16028 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2021-07-21 13:05:17 +00:00
parent 5e35e7ae7e
commit adbb41c80d

View file

@ -59,9 +59,10 @@ void Logging()
RLOG("This will be logged in release mode too!");
/// Sort of opposite situation is when adding temporary `LOG`s to the code for debugging. In
/// that case, '`D`' prefixed variants (`DLOG`, `DDUMP`, `DDUMPHEX`...) are handy - these cause
/// compile error in release mode, so will not get forgotten in the code past the release:
/// Sort of opposite situation is when adding temporary `LOG`s to the code for debugging.
/// In that case, '`D`' prefixed variants (`DLOG`, `DDUMP`, `DDUMPHEX`...) are handy -
/// these cause compile error in release mode (unless you define the flag DEBUGCODE in the
/// main configuration), so will not get forgotten in the code past the release:
DLOG("This would not compile in release mode.");