Skip to content

Commit

Permalink
🎨 update log level and message
Browse files Browse the repository at this point in the history
  • Loading branch information
ff137 committed Jul 24, 2024
1 parent 649a36c commit d6253f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/services/redis_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def scan_keys(self, match_pattern: str, count: int) -> Set[str]:
self.logger.trace("No keys found matching pattern in this batch.")

if all(c == 0 for c in next_cursor.values()):
self.logger.info("Completed SCAN for wallet IDs.")
self.logger.debug("Completed SCAN for pattern: %s", match_pattern)
break # Exit the loop
cursor += 1
except Exception: # pylint: disable=W0718
Expand Down

0 comments on commit d6253f1

Please sign in to comment.