| 117 | } |
| 118 | |
| 119 | void Application::warn(const string& warning, const string& method, const string& extra) |
| 120 | { |
| 121 | if (m_fatal_warnings) { |
| 122 | throw CanteraError(method, extra); |
| 123 | } else if (m_suppress_warnings) { |
| 124 | return; |
| 125 | } |
| 126 | warnlog(warning, fmt::format("{}: {}", method, extra)); |
| 127 | } |
| 128 | |
| 129 | void Application::thread_complete() |
| 130 | { |
no test coverage detected