Skip to content

Commit

Permalink
fix(connector): decrease log verbosity for license exchange (#655)
Browse files Browse the repository at this point in the history
  • Loading branch information
zmb3 authored Jan 30, 2025
1 parent cc08438 commit c859773
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/ironrdp-connector/src/license_exchange.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ impl Sequence for LicenseExchangeSequence {
) {
Ok((client_license_info, encryption_data)) => {
trace!(?encryption_data, "Successfully generated Client License Info");
info!(message = ?client_license_info, "Send");
trace!(message = ?client_license_info, "Send");

let written = encode_send_data_request::<LicensePdu>(
send_data_indication_ctx.initiator_id,
Expand Down Expand Up @@ -196,7 +196,7 @@ impl Sequence for LicenseExchangeSequence {
) {
Ok((new_license_request, encryption_data)) => {
trace!(?encryption_data, "Successfully generated Client New License Request");
info!(message = ?new_license_request, "Send");
trace!(message = ?new_license_request, "Send");

let written = encode_send_data_request::<LicensePdu>(
send_data_indication_ctx.initiator_id,
Expand Down

0 comments on commit c859773

Please sign in to comment.