mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
a32d803e10
LogLevel needs to be capitalized, see 51a8a977d9/include/crow/logging.h (L14)
21 lines
858 B
Markdown
21 lines
858 B
Markdown
Crow comes with a simple and easy to use logging system.<br><br>
|
|
|
|
##Setting up logging level
|
|
You can set up the level at which crow displays logs by using the app's `loglevel(crow::LogLevel)` method.<br><br>
|
|
|
|
The available log levels are as follows (please not that setting a level will also display all logs below this level):
|
|
|
|
- Debug
|
|
- Info
|
|
- Warning
|
|
- Error
|
|
- Critical
|
|
<br><br>
|
|
|
|
To set a logLevel, just use `#!cpp app.loglevel(crow::LogLevel::Warning)`, This will not show any debug or info logs. It will however still show error and critical logs.<br><br>
|
|
|
|
Please note that setting the Macro `CROW_ENABLE_DEBUG` during compilation will also set the log level to `Debug`.
|
|
|
|
##Writing a log
|
|
Writing a log is as simple as `#!cpp CROW_LOG_<LOG LEVEL> << "Hello";` (replace<LOG LEVEL> with the actual level in all caps, so you have `CROW_LOG_WARNING`).
|