"docs/vscode:/vscode.git/clone" did not exist on "e491c7e053e5d774f321612b3a400ca2fb424d32"
Unverified Commit 7e1665b0 authored by Michael Goin's avatar Michael Goin Committed by GitHub
Browse files

[Misc] Change warn_for_unimplemented_methods to debug (#20455)

parent 8d1096e7
...@@ -2799,7 +2799,7 @@ def warn_for_unimplemented_methods(cls: type[T]) -> type[T]: ...@@ -2799,7 +2799,7 @@ def warn_for_unimplemented_methods(cls: type[T]) -> type[T]:
if unimplemented_methods: if unimplemented_methods:
method_names = ','.join(unimplemented_methods) method_names = ','.join(unimplemented_methods)
msg = (f"Methods {method_names} not implemented in {self}") msg = (f"Methods {method_names} not implemented in {self}")
logger.warning(msg) logger.debug(msg)
@wraps(original_init) @wraps(original_init)
def wrapped_init(self, *args, **kwargs) -> None: def wrapped_init(self, *args, **kwargs) -> None:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment