







Priority for log entries
Namespace:
HttpServer
Assembly:
HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public enum LogPrio |
Visual Basic (Declaration) |
---|
Public Enumeration LogPrio |
Visual C++ |
---|
public enum class LogPrio |
Members
Member name | Description | |
---|---|---|
Trace |
Very detailed logs to be able to follow the flow of the program.
| |
Debug |
Logs to help debug errors in the application
| |
Info |
Information to be able to keep track of state changes etc.
| |
Warning |
Something did not go as we expected, but it's no problem.
| |
Error |
Something that should not fail failed, but we can still keep
on going.
| |
Fatal |
Something failed, and we cannot handle it properly.
|