Skip to content

Commit

Permalink
parsers: resp3: be less verbose
Browse files Browse the repository at this point in the history
Close #111

Signed-off-by: Salvatore Mesoraca <salvatore.mesoraca@aiven.io>
  • Loading branch information
aiven-sal authored and mkmkme committed Oct 16, 2024
1 parent e1be67b commit 8b052c8
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 8b052c8

Please sign in to comment.