processors: fix formatting string

This commit is contained in:
Aleix Conchillo Flaqué
2024-09-23 09:38:40 -07:00
parent da81df5284
commit c7ff79a652
2 changed files with 2 additions and 4 deletions

View File

@@ -193,8 +193,7 @@ class FrameProcessor:
logger.trace(f"Pushing {frame} from {self} to {self._next}")
await self._next.process_frame(frame, direction)
elif direction == FrameDirection.UPSTREAM and self._prev:
logger.trace(f"Pushing {frame} upstream from {
self} to {self._prev}")
logger.trace(f"Pushing {frame} upstream from {self} to {self._prev}")
await self._prev.process_frame(frame, direction)
except Exception as e:
logger.exception(f"Uncaught exception in {self}: {e}")