(logLevel: LogLevels)
| 188 | } |
| 189 | |
| 190 | public static setLogLevel(logLevel: LogLevels): void |
| 191 | { |
| 192 | const res = BoardControllerDLL.getInstance().setLogLevelBoardController(logLevel); |
| 193 | if (res !== BrainFlowExitCodes.STATUS_OK) |
| 194 | { |
| 195 | throw new BrainFlowError (res, 'Could not set log level properly'); |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | public static setLogFile(file: string): void |
| 200 | { |
nothing calls this directly
no test coverage detected