YaLTeR / wl-clipboard-rs

A safe Rust crate for working with the Wayland clipboard.
Apache License 2.0
223 stars 16 forks source link

Demote debug logs from `info` to `trace` #30

Closed MarijnS95 closed 1 year ago

MarijnS95 commented 1 year ago

Info is a tad too verbose for debug log messages; prevent having to filter them out by the end user in a typical log setup by turning all debug messages into trace! logs.

See also a similar PR for arboard, one of the users of wl-clipboard-rs: https://github.com/1Password/arboard/pull/80

YaLTeR commented 1 year ago

Thanks!