[CWM-167] use "debug" instead of "info" logging in ParameterInfoControllerProvider

review fix for IJ-CR-3363

GitOrigin-RevId: 6cc335f002d122671760addc497a53efc0ad53cb
This commit is contained in:
Vladimir.Petrenko
2020-10-21 04:14:48 +00:00
committed by intellij-monorepo-bot
parent ccf1adac67
commit aacc2708a7
@@ -45,7 +45,7 @@ public abstract class ParameterInfoControllerProvider {
public static void rememberEditor(@NotNull Editor editor) {
if (editorsWithControllers == null) {
LOG.info("create map of weak references to remember all editors with custom parameter info controllers and attach EP-listener");
LOG.debug("create map of weak references to remember all editors with custom parameter info controllers and attach EP-listener");
editorsWithControllers = ContainerUtil.createWeakSet(); // Weak... to avoid memory leaks caused by keeping disposed editors in memory
EP_NAME.addExtensionPointListener(new ExtensionPointListener<>() {
@Override
@@ -56,13 +56,13 @@ public abstract class ParameterInfoControllerProvider {
}
if (!editorsWithControllers.contains(editor)) {
LOG.info("remember editor " + editor);
LOG.debug("remember editor " + editor);
editorsWithControllers.add(editor);
}
}
public static void removeControllersFromAllEditors() {
LOG.info("remove all parameter info controllers from all editors because an extension was removed");
LOG.debug("remove all parameter info controllers from all editors because an extension was removed");
for (Editor editor : editorsWithControllers) {
if (editor != null) {
for (ParameterInfoControllerBase controller : ParameterInfoControllerBase.getAllControllers(editor)) {