dodo
0.0.1
A C++ library to create containerized Linux services
|
Go to the source code of this file.
Data Structures | |
class | dodo::common::Logger |
A Logger interface. More... | |
struct | dodo::common::Logger::FileParams |
File Logging parameters. More... | |
struct | dodo::common::Logger::SyslogParams |
syslog logging parameters. More... | |
Namespaces | |
dodo | |
A C++ platform interface to lean Linux services tailored for containerized deployment. | |
dodo::common | |
Common and utility interfaces. | |
Macros | |
#define | log_Debug(what) common::Logger::getLogger()->debug( dodo::common::Puts() << what ) |
Macro to log Debug. More... | |
#define | log_Error(what) common::Logger::getLogger()->error( dodo::common::Puts() << what ) |
Macro to log Error. More... | |
#define | log_Fatal(what) common::Logger::getLogger()->fatal( dodo::common::Puts() << what ) |
Macro to log Fatal. More... | |
#define | log_Info(what) common::Logger::getLogger()->info( dodo::common::Puts() << what ) |
Macro to log Info. More... | |
#define | log_Statistics(what) common::Logger::getLogger()->statistics( dodo::common::Puts() << what ) |
Macro to log Statistics. More... | |
#define | log_Trace(what) common::Logger::getLogger()->trace( dodo::common::Puts() << what ) |
Macro to log Trace. More... | |
#define | log_Warning(what) common::Logger::getLogger()->warning( dodo::common::Puts() << what ) |
Macro to log Warning. More... | |
Defines the dodo::network::Logger class.
Definition in file logger.hpp.
#define log_Debug | ( | what | ) | common::Logger::getLogger()->debug( dodo::common::Puts() << what ) |
Macro to log Debug.
what | The info to log. As the argument is fed to a dodo::common::Puts() it can be a << pipe-lined expression. |
Definition at line 302 of file logger.hpp.
#define log_Error | ( | what | ) | common::Logger::getLogger()->error( dodo::common::Puts() << what ) |
Macro to log Error.
what | The info to log. As the argument is fed to a dodo::common::Puts() it can be a << pipe-lined expression. |
Definition at line 277 of file logger.hpp.
#define log_Fatal | ( | what | ) | common::Logger::getLogger()->fatal( dodo::common::Puts() << what ) |
Macro to log Fatal.
what | The info to log. As the argument is fed to a dodo::common::Puts() it can be a << pipe-lined expression. |
Definition at line 271 of file logger.hpp.
#define log_Info | ( | what | ) | common::Logger::getLogger()->info( dodo::common::Puts() << what ) |
Macro to log Info.
what | The info to log. As the argument is fed to a dodo::common::Puts() it can be a << pipe-lined expression. |
Definition at line 289 of file logger.hpp.
#define log_Statistics | ( | what | ) | common::Logger::getLogger()->statistics( dodo::common::Puts() << what ) |
Macro to log Statistics.
what | The info to log. As the argument is fed to a dodo::common::Puts() it can be a << pipe-lined expression. |
Definition at line 295 of file logger.hpp.
#define log_Trace | ( | what | ) | common::Logger::getLogger()->trace( dodo::common::Puts() << what ) |
Macro to log Trace.
what | The info to log. As the argument is fed to a dodo::common::Puts() it can be a << pipe-lined expression. |
Definition at line 312 of file logger.hpp.
#define log_Warning | ( | what | ) | common::Logger::getLogger()->warning( dodo::common::Puts() << what ) |
Macro to log Warning.
what | The info to log. As the argument is fed to a dodo::common::Puts() it can be a << pipe-lined expression. |
Definition at line 283 of file logger.hpp.