WebSocket++
0.8.3-dev
C++ websocket client/server library
|
Package of log levels for logging errors. More...
#include <levels.hpp>
Static Public Member Functions | |
static char const * | channel_name (level channel) |
Get the textual name of a channel given a channel id. More... | |
Static Public Attributes | |
static level const | none = 0x0 |
Special aggregate value representing "no levels". | |
static level const | devel = 0x1 |
Low level debugging information (warning: very chatty) | |
static level const | library = 0x2 |
static level const | info = 0x4 |
static level const | warn = 0x8 |
static level const | rerror = 0x10 |
static level const | fatal = 0x20 |
static level const | all = 0xffffffff |
Special aggregate value representing "all levels". | |
Package of log levels for logging errors.
Definition at line 59 of file levels.hpp.
|
inlinestatic |
Get the textual name of a channel given a channel id.
The id must be that of a single channel. Passing an aggregate channel package results in undefined behavior.
channel | The channel id to look up. |
Definition at line 91 of file levels.hpp.
|
static |
Unrecoverable error. This error will trigger immediate unclean termination of the connection or endpoint.
Definition at line 78 of file levels.hpp.
|
static |
Information about minor configuration problems or additional information about other warnings.
Definition at line 69 of file levels.hpp.
|
static |
Information about unusual system states or other minor internal library problems, less chatty than devel.
Definition at line 66 of file levels.hpp.
|
static |
Recoverable error. Recovery may mean cleanly closing the connection with an appropriate error code to the remote endpoint.
Definition at line 75 of file levels.hpp.
|
static |
Information about important problems not severe enough to terminate connections.
Definition at line 72 of file levels.hpp.