Skip to content

Commit 47bc77a

Browse files
author
amitlissack
authored
fix(api): reduce the severity of retry message from warning to info. (#8192)
1 parent 754580c commit 47bc77a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/opentrons/drivers/asyncio/communication/serial_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ async def send_data(
119119
self.raise_on_error(response=str_response)
120120
return str_response
121121

122-
log.warning(f'{self.name}: retry number {retry}/{retries}')
122+
log.info(f'{self.name}: retry number {retry}/{retries}')
123123

124124
await self.on_retry()
125125

0 commit comments

Comments
 (0)