aboutsummaryrefslogtreecommitdiffstats
path: root/docs/logger.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/logger.md')
-rw-r--r--docs/logger.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/logger.md b/docs/logger.md
index 93debac8..0d642949 100644
--- a/docs/logger.md
+++ b/docs/logger.md
@@ -22,7 +22,7 @@ First of all, there is a definition to get the instance of the current global lo
can then be used to set a different minimum display level. This definition is `yLogger`, and an
example of how to use it to change the default output level can be seen below
-``` c++
+```
yLogger.setLevel(yage::LogLevel::ERROR);
```
@@ -35,7 +35,7 @@ Other preprocessor definitions are `yLogDebug`, `yLogInfo`, `yLogWarning`, `yLog
global logger `yLogger`. These are the definitions that should be used to print somehting
to the main logger. For example
-``` c++
+```
yLogWarning << "This is a warning";
```