()
| 1605 | } |
| 1606 | |
| 1607 | export function getLoggingLevel() { |
| 1608 | return getNumericLoggingLevel(vscode.workspace.getConfiguration("C_Cpp", null).get<string>("loggingLevel")); |
| 1609 | } |
| 1610 | |
| 1611 | export function getNumericLoggingLevel(loggingLevel: string | undefined): number { |
| 1612 | if (!loggingLevel) { |
no test coverage detected