bref
API 2014 of the Zia HTTP server.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
Public Types | Public Member Functions
bref::ILogger Class Reference

Bref API logger interface. More...

#include <ILogger.h>

List of all members.

Public Types

enum  Severity {
  Debug, Info, Warning, Error,
  Fatal
}
 Logger severities. More...

Public Member Functions

virtual ~ILogger ()
 Virtual destructor.
virtual Severity severity () const =0
 Return the severity of the logger.
virtual void setSeverity (Severity newSeverity)=0
 Set the logger severity.
virtual void log (Severity severity, const std::string &message)=0
 Log a message with a given severity.

Detailed Description

Bref API logger interface.

General interface for the logging in modules and the server more generally.

See also:
ScopedLogger, LOG(logger, severity)

Member Enumeration Documentation

Logger severities.

Enumerator:
Debug 

debug information mainly for developers

Info 

information that can be useful to know about an operation

Warning 

a warning

Error 

a non-fatal error

Fatal 

an fatal error that cause the program to stop


Member Function Documentation

virtual void bref::ILogger::log ( Severity  severity,
const std::string &  message 
) [pure virtual]

Log a message with a given severity.

Note:
The message is logged only if severity (the message severity) is superior or equal to severity() (the logger severity).
Parameters:
severityThe severity of the message.
messageThe message (string) to log.
virtual void bref::ILogger::setSeverity ( Severity  newSeverity) [pure virtual]

Set the logger severity.

Parameters:
[in]newSeverityThe new severity for the logger.
See also:
severity()
virtual Severity bref::ILogger::severity ( ) const [pure virtual]

Return the severity of the logger.

Returns:
The current severity.
See also:
setSeverity()

The documentation for this class was generated from the following file: