PyCharm: change WARN to INFO for spammy messages to decrease noise level

GitOrigin-RevId: 6d4ccc81b3ff8b17d75c6ab3d580afaa616d7c48
This commit is contained in:
Ilya.Kazakevich
2024-07-24 01:58:34 +02:00
committed by intellij-monorepo-bot
parent f385b1c610
commit 9d7bc20e6b
2 changed files with 2 additions and 2 deletions

View File

@@ -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)

View File

@@ -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());
}
/**