Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update the logging level as this is supposed to be a warning
  • Loading branch information
RichardOberdieck authored Feb 28, 2024
commit afe964c4af558ce409b3a622c95e1c241d974c04
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ def _incoming_close(self, channel: int, frame: Tuple[Any, ...]) -> None:
self._error = AMQPConnectionError(
condition=frame[0][0], description=frame[0][1], info=frame[0][2]
)
_LOGGER.error(
_LOGGER.warning(
"Connection closed with error: %r", frame[0],
extra=self._network_trace_params
)
Expand Down