This shows you the differences between two versions of the page.
manual:logger [2014/03/21 09:15] zenke created |
manual:logger [2015/08/24 18:25] (current) zenke Replaces DEBUG by VERBOSE as done in the code to avoid conflicts |
||
---|---|---|---|
Line 11: | Line 11: | ||
Auryn will by default try to keep console output (first additional parameter) neat and go into a little more detail in the log file. If even further detail is needed there are more verbose LogMessageTypes such as | Auryn will by default try to keep console output (first additional parameter) neat and go into a little more detail in the log file. If even further detail is needed there are more verbose LogMessageTypes such as | ||
<code c++> | <code c++> | ||
- | enum LogMessageType { EVERYTHING, DEBUG, NOTIFICATION, SETTINGS, PROGRESS, WARNING, ERROR, NONE }; | + | enum LogMessageType { EVERYTHING, VERBOSE, NOTIFICATION, SETTINGS, PROGRESS, WARNING, ERROR, NONE }; |
</code> | </code> | ||
which will mostly be self-explanatory. | which will mostly be self-explanatory. | ||