|
void | taco::LogError (LogSeverity severity, std::string &&msg) |
| Logs a message (which may not be an error despite what the name suggests). More...
|
|
void | taco::SetLogOutput (std::ostream *log_out) |
| Sets the output stream where the log messages should be printed to. More...
|
|
void | taco::RestoreLogOutput () |
| Restores the log output stream to std::cerr. More...
|
|
void | taco::SetLogPrintMinSeverity (LogSeverity min_severity) |
| Sets the minimum severity level of a log message to be printed. More...
|
|
void | taco::DisableLogPrint () |
| Disable all log message printing. More...
|
|
void | taco::SetSecondaryLogOutput (std::ostream *log_out, LogSeverity min_severity) |
| Sets the secondary output stream where logs messages additionally prints with at least the specified severity. More...
|
|
void | taco::ClearSecondaryLogOutput () |
| Clears the secondary output stream where logs messages additionally prints. More...
|
|