| 84 | } |
| 85 | |
| 86 | void MLModel::set_log_level (int log_level) |
| 87 | { |
| 88 | int res = set_log_level_ml_module (log_level); |
| 89 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 90 | { |
| 91 | throw BrainFlowException ("failed to set log level", res); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | void MLModel::log_message (int log_level, const char *format, ...) |
| 96 | { |
nothing calls this directly
no test coverage detected