| 178 | } |
| 179 | |
| 180 | void ScriptExtender::LogOsirisError(std::string_view msg) |
| 181 | { |
| 182 | gCoreLibPlatformInterface.GlobalConsole->Print(DebugMessageType::Error, msg.data()); |
| 183 | server_.Osiris().LogError(msg); |
| 184 | |
| 185 | if (luaDebugger_) { |
| 186 | luaDebugger_->OnGenericError(msg.data()); |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | void ScriptExtender::LogOsirisWarning(std::string_view msg) |
| 191 | { |
no test coverage detected