Skip to content

Commit

Permalink
Merge pull request valkey-io#112 from valkey-io/aiven-sal/logger
Browse files Browse the repository at this point in the history
parsers: resp3: be less verbose
  • Loading branch information
aiven-sal authored Oct 16, 2024
2 parents e1be67b + 8b052c8 commit fbf4a31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions valkey/_parsers/resp3.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, socket_read_size):

def handle_pubsub_push_response(self, response):
logger = getLogger("push_response")
logger.info("Push response: " + str(response))
logger.debug("Push response: " + str(response))
return response

def read_response(self, disable_decoding=False, push_request=False):
Expand Down Expand Up @@ -150,7 +150,7 @@ def __init__(self, socket_read_size):

def handle_pubsub_push_response(self, response):
logger = getLogger("push_response")
logger.info("Push response: " + str(response))
logger.debug("Push response: " + str(response))
return response

async def read_response(
Expand Down

0 comments on commit fbf4a31

Please sign in to comment.