Skip to content

Commit 1b476eb

Browse files
committed
chore(wayland): downgrade some logs from debug to trace
1 parent 5074194 commit 1b476eb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/clients/wayland/wlr_data_control/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ impl DataControlOfferHandler for Environment {
239239
_offer: &mut DataControlDeviceOffer,
240240
_mime_type: String,
241241
) {
242-
debug!("Handler received offer");
242+
trace!("Handler received offer");
243243
}
244244
}
245245

src/clients/wayland/wlr_data_control/offer.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use smithay_client_toolkit::data_device_manager::ReadPipe;
77
use std::ops::DerefMut;
88
use std::os::fd::FromRawFd;
99
use std::sync::{Arc, Mutex};
10-
use tracing::{debug, warn};
10+
use tracing::{trace, warn};
1111
use wayland_client::{Connection, Dispatch, Proxy, QueueHandle};
1212
use wayland_protocols_wlr::data_control::v1::client::zwlr_data_control_offer_v1::{
1313
Event, ZwlrDataControlOfferV1,
@@ -149,7 +149,7 @@ where
149149
let data = data.data_control_offer_data();
150150

151151
if let Event::Offer { mime_type } = event {
152-
debug!("Adding new offer with type '{mime_type}'");
152+
trace!("Adding new offer with type '{mime_type}'");
153153
data.push_mime_type(mime_type.clone());
154154
state.offer(conn, qh, &mut lock!(data.inner).offer, mime_type);
155155
}

src/clients/wayland/wlr_foreign_toplevel/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ impl ToplevelManagerHandler for Environment {
3030

3131
impl ToplevelHandleHandler for Environment {
3232
fn new_handle(&mut self, _conn: &Connection, _qh: &QueueHandle<Self>, handle: ToplevelHandle) {
33-
debug!("Handler received new handle");
33+
trace!("Handler received new handle");
3434

3535
match handle.info() {
3636
Some(info) => {
@@ -50,7 +50,7 @@ impl ToplevelHandleHandler for Environment {
5050
_qh: &QueueHandle<Self>,
5151
handle: ToplevelHandle,
5252
) {
53-
debug!("Handler received handle update");
53+
trace!("Handler received handle update");
5454

5555
match handle.info() {
5656
Some(info) => {

0 commit comments

Comments
 (0)