Logger.log
- void log(LogLevel ll, bool condition, A args)
- void log(LogLevel ll, bool condition, T args, int line, string file, string funcName, string prettyFuncName)
- void log(LogLevel ll, A args)
- void log(LogLevel ll, T args, int line, string file, string funcName, string prettyFuncName, string moduleName)
- void log(bool condition, A args)
- void log(bool condition, T args, int line, string file, string funcName, string prettyFuncName, string moduleName)
- void log(A args)
- void log(T arg, int line, string file, string funcName, string prettyFuncName, string moduleName)
std logger core Logger
aliasesconstructorsfunctionspropertiesstructstemplates
This function logs data to the used Logger depending on a explicitly passed condition with the LogLevel of the used Logger.
In order for the resulting log message to be logged the LogLevel of the used Logger must be greater or equal than the global LogLevel and the condition must be true.