use of org.sonarsource.sonarlint.core.client.api.common.LogOutput.Level in project sonarlint-core by SonarSource.
the class StandaloneNoPluginMediumTest method prepare.
@Before
public void prepare() throws IOException {
LogOutput logOutput = (msg, level) -> logs.put(level, msg);
sonarlint = new StandaloneSonarLintEngineImpl(StandaloneGlobalConfiguration.builder().setLogOutput(logOutput).build());
baseDir = temp.newFolder();
}
Aggregations