Skip to content

Commit

Permalink
Change unimpleted log level to debug (milvus-io#1761)
Browse files Browse the repository at this point in the history
Signed-off-by: Cai Zhang <[email protected]>
  • Loading branch information
xiaocai2333 authored Oct 31, 2023
1 parent 198db18 commit 677efb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymilvus/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def handler(*args, **kwargs):
return func(*args, **kwargs)
except grpc.RpcError as e:
if e.code() == grpc.StatusCode.UNIMPLEMENTED:
LOGGER.warning(f"{func.__name__} unimplemented, ignore it")
LOGGER.debug(f"{func.__name__} unimplemented, ignore it")
return default_return_value
raise e from e
except Exception as e:
Expand Down

0 comments on commit 677efb2

Please sign in to comment.