(file: string)
| 146 | } |
| 147 | |
| 148 | public static setLogFile(file: string): void |
| 149 | { |
| 150 | const res = MLModuleDLL.getInstance().setLogFileMLModule(file); |
| 151 | if (res !== BrainFlowExitCodes.STATUS_OK) |
| 152 | { |
| 153 | throw new BrainFlowError (res, 'Could not redirect to log file'); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | public static logMessage(logLevel: LogLevels, message: string): void |
| 158 | { |
nothing calls this directly
no test coverage detected