Skip to content

Commit fdc71e1

Browse files
committed
fix logging message
1 parent 61e64af commit fdc71e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/unstructured_client/utils/_human_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,5 +97,5 @@ def log_retries(retry_count, sleep):
9797
"""Function for logging retries to give users visibility into requests."""
9898
logging.basicConfig(level=logging.INFO, stream=sys.stdout)
9999
logging.info(
100-
"Retry attempt %s. Sleeping %s seconds before retry.", retry_count, sleep
100+
"Retry attempt %s. Sleeping %s seconds before retry.", retry_count, round(sleep, 1)
101101
)

0 commit comments

Comments
 (0)