|
void | set_log_level (log_levels new_level) |
| Sets the global log level. More...
|
|
log_levels | log_level () |
| Getter for the global log level. More...
|
|
logger< true > | error () |
| Used to log errors. The logging level is logERROR. More...
|
|
logger< true > | warn () |
| Used to log warnings. The logging level is logWARNING. More...
|
|
logger< true > | warning () |
| Used to log warnings. The logging level is logWARNING. More...
|
|
logger< true > | info () |
| Used to log infos. The logging level is logINFO. More...
|
|
logger< true > | debug () |
| Used to log debug output. The logging level is logDEBUG. More...
|
|
template<typename KeyTypeT > |
logger< KeyTypeT::enabled > | error () |
| Used to log errors for a certain component. If KeyTypeT::enabled is false no output will be generated. The logging level is logERROR. More...
|
|
template<typename KeyTypeT > |
logger< KeyTypeT::enabled > | warn () |
| Used to log warnings for a certain component. If KeyTypeT::enabled is false no output will be generated. The logging level is logWARNING. More...
|
|
template<typename KeyTypeT > |
logger< KeyTypeT::enabled > | warning () |
| Used to log warnings for a certain component. If KeyTypeT::enabled is false no output will be generated. The logging level is logWARNING. More...
|
|
template<typename KeyTypeT > |
logger< KeyTypeT::enabled > | info () |
| Used to log infos for a certain component. If KeyTypeT::enabled is false no output will be generated. The logging level is logINFO. More...
|
|
template<typename KeyTypeT > |
logger< KeyTypeT::enabled > | debug () |
| Used to log debug output for a certain component. If KeyTypeT::enabled is false no output will be generated. The logging level is logDEBUG. More...
|
|
nullstream & | get_nullstream () |
| Singleton factory for nullstream. More...
|
|
template<typename T > |
nullstream & | operator<< (nullstream &s, T const &) |
| Generic shift left operator. Throws anything it gets away. More...
|
|
nullstream & | operator<< (nullstream &s, const std::string &) |
| Specialization of the generic template function. Returns same as get_nullstream(). Does nothing. More...
|
|
nullstream & | operator<< (nullstream &s, const char *) |
| Specialization of the generic template function. Returns same as get_nullstream(). Does nothing. More...
|
|
nullstream & | operator<< (nullstream &s, std::ostream &(std::ostream &)) |
| Specialization of the generic template function for std::endl. Returns same as get_nullstream(). Does nothing. More...
|
|
Namespace holding the logging facility.