summaryrefslogtreecommitdiff
path: root/profcollectd
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2024-01-29 19:39:15 +0100
committerJeff Vander Stoep <jeffv@google.com>2024-01-31 10:39:32 +0100
commit743b98e45f0609f07c4dd88c98d398e0deb3f91d (patch)
treebc0c081f9dd0bcbdcac2d95c4310b536f72f7833 /profcollectd
parentb0bb4d345b84141954d8f6e92603891a030ce70c (diff)
downloadextras-743b98e45f0609f07c4dd88c98d398e0deb3f91d.tar.gz
Replace use of deprecated function with_min_level
This is needed to upgrade the android_logger crate from 0.12.0 to 0.13.3. with_max_level provides the same functionality as with_min_level. The renaming is admittedly confusing, but the new name is accurate and it makes sense that they deprecated and then removed the previously poorly named with_min_level. See crate documentation [1] and code [2]. [1]: https://docs.rs/android_logger/0.12.0/android_logger/struct.Config.html#method.with_min_level [2]: https://docs.rs/android_logger/0.12.0/src/android_logger/lib.rs.html#227 Bug: 322718401 Test: build and run CF with the change. Test: m aosp_cf_x86_64_phone Change-Id: I3296e815daeef318ed66cd132ad96b23cc4ee2e1
Diffstat (limited to 'profcollectd')
-rw-r--r--profcollectd/libprofcollectd/lib.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/profcollectd/libprofcollectd/lib.rs b/profcollectd/libprofcollectd/lib.rs
index 9923737f..c8e39753 100644
--- a/profcollectd/libprofcollectd/lib.rs
+++ b/profcollectd/libprofcollectd/lib.rs
@@ -126,11 +126,12 @@ pub fn reset() -> Result<()> {
/// Inits logging for Android
pub fn init_logging() {
- let min_log_level = if cfg!(feature = "test") { log::Level::Info } else { log::Level::Error };
+ let max_log_level =
+ if cfg!(feature = "test") { log::LevelFilter::Info } else { log::LevelFilter::Error };
android_logger::init_once(
android_logger::Config::default()
.with_tag("profcollectd")
- .with_min_level(min_log_level)
- .with_log_id(android_logger::LogId::System),
+ .with_max_level(max_log_level)
+ .with_log_buffer(android_logger::LogId::System),
);
}