(file: string)
| 197 | } |
| 198 | |
| 199 | public static setLogFile(file: string): void |
| 200 | { |
| 201 | const res = BoardControllerDLL.getInstance().setLogFileBoardController(file); |
| 202 | if (res !== BrainFlowExitCodes.STATUS_OK) |
| 203 | { |
| 204 | throw new BrainFlowError (res, 'Could not redirect to log file'); |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | public static logMessage(logLevel: LogLevels, message: string): void |
| 209 | { |
nothing calls this directly
no test coverage detected