| 75 | ///////////////////////////////////////// |
| 76 | |
| 77 | void MLModel::set_log_file (std::string log_file) |
| 78 | { |
| 79 | int res = set_log_file_ml_module (log_file.c_str ()); |
| 80 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 81 | { |
| 82 | throw BrainFlowException ("failed to set log file", res); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | void MLModel::set_log_level (int log_level) |
| 87 | { |
nothing calls this directly
no test coverage detected