Skip to content

Commit 1f33b32

Browse files
authored
refactor: Use DEBUG log level for unhandled objects
Issue-31: #31 PR-38: #38
1 parent 3ea8ffb commit 1f33b32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/griffe_pydantic/_internal/static.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def _process_function(func: Function, cls: Class, *, processed: set[str]) -> Non
133133
processed.add(func.canonical_path)
134134

135135
if isinstance(func, Alias):
136-
_logger.warning(f"cannot yet process {func}")
136+
_logger.debug(f"cannot yet process {func}")
137137
return
138138

139139
if decorator := _pydantic_validator(func):

0 commit comments

Comments
 (0)