Skip to content

Commit

Permalink
fix: change self.logger to self._logger
Browse files Browse the repository at this point in the history
  • Loading branch information
jrriehl committed Sep 7, 2023
1 parent 5d7eac9 commit da5e2b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/uagents/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ async def _process_message_queue(self):
# lookup the model definition
model_class: Model = self._models.get(schema_digest)
if model_class is None:
self.logger.warning(
self._logger.warning(
f"Received message with unrecognized schema digest: {schema_digest}"
)
continue
Expand Down

0 comments on commit da5e2b7

Please sign in to comment.