Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add safer/convenient console log function (#116)
- this log function makes use of `std::format` and the benefits that comes with (compile time checking, type representation, numbered fields, etc.) compared to the printf style function. ```cpp auto log = RE::ConsoleLog::GetSingleton(); log->Log("Value: {}", true); ``` ``` Value: true ```
- Loading branch information