|
| template<typename... Args> |
| void | Debug (std::format_string< Args... > fmt, Args &&... args) |
| | Logs a debug-level message from a script. Supports std::format syntax.
|
| template<typename... Args> |
| void | Info (std::format_string< Args... > fmt, Args &&... args) |
| | Logs an info-level message from a script. Supports std::format syntax.
|
| template<typename... Args> |
| void | Warning (std::format_string< Args... > fmt, Args &&... args) |
| | Logs a warning-level message from a script. Supports std::format syntax.
|
| template<typename... Args> |
| void | Error (std::format_string< Args... > fmt, Args &&... args) |
| | Logs an error-level message from a script. Supports std::format syntax.
|
| template<typename... Args> |
| void | Critical (std::format_string< Args... > fmt, Args &&... args) |
| | Logs a critical-level message from a script. Supports std::format syntax.
|