(logLevel: LogLevels, message: string)
| 155 | } |
| 156 | |
| 157 | public static logMessage(logLevel: LogLevels, message: string): void |
| 158 | { |
| 159 | const res = MLModuleDLL.getInstance().logMessageMLModule(logLevel, message); |
| 160 | if (res !== BrainFlowExitCodes.STATUS_OK) |
| 161 | { |
| 162 | throw new BrainFlowError (res, 'Could not writte message'); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | // model methods |
| 167 | public prepare(): void |
nothing calls this directly
no test coverage detected