8000 Udpates warning when pro provider not found · localstack/localstack@78db4cc · GitHub
[go: up one dir, main page]

Skip to content

Commit 78db4cc

Browse files
committed
Udpates warning when pro provider not found
1 parent 715bc9b commit 78db4cc

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

localstack/services/cloudformation/resource_provider.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -797,10 +797,12 @@ def load_resource_provider(self, resource_type: str) -> ResourceProvider:
797797
plugin = pro_plugin_manager.load(resource_type)
798798
return plugin.factory()
799799
except Exception:
800-
LOG.warning(
801-
"Failed to load resource type %s from pro as a ResourceProvider.",
800+
LOG.debug(
801+
(
802+
"Failed to load resource type %s from pro as a ResourceProvider. "
803+
"Maybe this resource is implemented in community."
804+
),
802805
resource_type,
803-
exc_info=LOG.isEnabledFor(logging.DEBUG),
804806
)
805807

806808
try:

0 commit comments

Comments
 (0)
0