Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 574b7c6b authored by Yun-hao Chung's avatar Yun-hao Chung Committed by Gerrit Code Review
Browse files

Merge "Floss: Temporary skip setting log level for tags" into main

parents 48d54c54 abb6c474
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -98,6 +98,9 @@ impl BluetoothLogging {

    fn apply_libbluetooth_log_level(&self) {
        set_default_log_level(self.log_level);

        // TODO(b/371889111): Don't set log level for tag until b/371889111 is fixed.
        /*
        // Levels for verbose-only tags.
        let level = match self.log_level {
            Level::Verbose => Level::Verbose,
@@ -107,6 +110,7 @@ impl BluetoothLogging {
            log::info!("Setting log level for tag {} to {:?}", tag, level);
            set_log_level_for_tag(tag, level);
        }
         */
    }
}