Skip to content

Commit 836004f

Browse files
authored
refactor: Change logging level for missing attributes. (#788)
1 parent f67ec54 commit 836004f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interactions/api/models/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __init__(self, **kwargs):
4646
# else case if the mixin is used outside of this library and/or SDK.
4747
setattr(self, key, kwargs[key])
4848
else:
49-
log.info(
49+
log.debug(
5050
f"Attribute {key} is missing from the {self.__class__.__name__} data model, skipping."
5151
)
5252
# work on message printout? Effective, but I think it should be a little bit more friendly

0 commit comments

Comments
 (0)