mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
PyCharm: change WARN to INFO for spammy messages to decrease noise level
GitOrigin-RevId: 6d4ccc81b3ff8b17d75c6ab3d580afaa616d7c48
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f385b1c610
commit
9d7bc20e6b
@@ -46,7 +46,7 @@ fun loadTargetBasedSdkAdditionalData(element: Element): Pair<ContributedConfigur
|
||||
// the state that contains information of the target, as for now the target configuration is embedded into the additional data
|
||||
val targetConfigurationElement = element.getChild(TARGET_ENVIRONMENT_CONFIGURATION)
|
||||
if (targetConfigurationElement == null) {
|
||||
LOG.warn("SDK target configuration data is absent")
|
||||
LOG.info("SDK target configuration data is absent")
|
||||
return null to null
|
||||
}
|
||||
val targetState = jdomSerializer.deserialize(targetConfigurationElement, ContributedConfigurationsList.ContributedStateBase::class.java, JdomAdapter)
|
||||
|
||||
@@ -69,7 +69,7 @@ public abstract class PyEnvTestCase {
|
||||
@Rule public final TestWatcher myWatcher = new TestWatcher(){};
|
||||
|
||||
static {
|
||||
LOG.warn("Using following config\n" + SETTINGS.reportConfiguration());
|
||||
LOG.info("Using following config\n" + SETTINGS.reportConfiguration());
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user