| 19 | namespace tflite { |
| 20 | |
| 21 | int StderrReporter::Report(const char* format, va_list args) { |
| 22 | logging_internal::MinimalLogger::LogFormatted(TFLITE_LOG_ERROR, format, args); |
| 23 | return 0; |
| 24 | } |
| 25 | |
| 26 | ErrorReporter* DefaultErrorReporter() { |
| 27 | static StderrReporter* error_reporter = new StderrReporter; |
no outgoing calls
no test coverage detected