enum ugcs::vsm::Log::Level

Overview

Available log levels. More…

#include <log.h>

enum Level
{
    DEBUGGING,
    INFO,
    WARNING,
    ERROR,
    MAX       = ERROR,
};

Detailed Documentation

Available log levels.

Enum Values

DEBUGGING

Most verbose debug level.

Should be used only for debug information output.

INFO

Informational messages.

WARNING

Warning messages which should be noticed by an operator.

The error condition should be recoverable.

ERROR

Non-recoverable errors which should be noticed by an operator.

MAX

Maximal level code.