Skip to content

Commit 30aea45

Browse files
committed
fix(_plugins): remove logger
1 parent 4447b5a commit 30aea45

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/ansys/tools/common/launcher/_plugins.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
from typing import Any
2929
import warnings
3030

31-
from ansys.tools.common.logger import LOGGER
32-
3331
from .interface import FALLBACK_LAUNCH_MODE_NAME, DataclassProtocol, LauncherProtocol
3432

3533
LAUNCHER_ENTRY_POINT = "ansys.tools.local_product_launcher.launcher"
@@ -69,7 +67,6 @@ def get_all_plugins(hide_fallback: bool = True) -> dict[str, dict[str, type[Laun
6967
except ValueError:
7068
message = f"Skipping malformed entry point name: {entry_point.name}"
7169
warnings.warn(message)
72-
LOGGER.warning(message)
7370
continue
7471

7572
if hide_fallback and launch_mode == FALLBACK_LAUNCH_MODE_NAME:
@@ -80,7 +77,6 @@ def get_all_plugins(hide_fallback: bool = True) -> dict[str, dict[str, type[Laun
8077
except Exception as exception:
8178
message = f"Skipping broken plugin '{entry_point.name}': {exception}"
8279
warnings.warn(message)
83-
LOGGER.warning(message)
8480
continue
8581

8682
res.setdefault(product_name, dict())

0 commit comments

Comments
 (0)