Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Improve the warning when error is raised from plugin #225

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions gymnasium/envs/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import importlib.util
import re
import sys
import traceback
import warnings
from collections import defaultdict
from dataclasses import dataclass, field
Expand Down Expand Up @@ -309,8 +310,8 @@ def load_env_plugins(entry_point: str = "gymnasium.envs") -> None:
fn = plugin.load()
try:
fn()
except Exception as e:
logger.warn(str(e))
except Exception:
logger.warn(f"plugin: {plugin.value} raised {traceback.format_exc()}")


# fmt: off
Expand Down