Skip to content

Commit 8f65540

Browse files
authored
chore: reduce logs (#6762)
Description --- Reduce logs
1 parent 2535e87 commit 8f65540

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

applications/minotari_console_wallet/src/grpc/wallet_grpc_server.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ impl wallet_server::Wallet for WalletGrpcServer {
773773
_request: Request<GetCompletedTransactionsRequest>,
774774
) -> Result<Response<Self::GetCompletedTransactionsStream>, Status> {
775775
let start = std::time::Instant::now();
776-
debug!(
776+
trace!(
777777
target: LOG_TARGET,
778778
"GetAllCompletedTransactions: Incoming GRPC request"
779779
);
@@ -814,7 +814,7 @@ impl wallet_server::Wallet for WalletGrpcServer {
814814
};
815815
match sender.send(Ok(response)).await {
816816
Ok(_) => {
817-
debug!(
817+
trace!(
818818
target: LOG_TARGET,
819819
"GetAllCompletedTransactions: Sent transaction TxId: {} ({} of {})",
820820
txn.tx_id,

0 commit comments

Comments
 (0)