commit | b8ad2428d0e435d923e4c70163b4a31cae106fca | [log] [tgz] |
---|---|---|
author | Jeffrey Vander Stoep <jeffv@google.com> | Tue Feb 06 08:58:17 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Feb 06 08:58:17 2024 +0000 |
tree | 69aea1732ff61aa977ddf2fb759dd5d3af020e2f | |
parent | 108a2d6360823a2e57222797d104607470f5e37e [diff] | |
parent | a47ea30e0b8072b9db19d2279309500126dec9ff [diff] |
Merge "Replace use of deprecated logging functions" into main
diff --git a/remoteauth/service/jni/src/remoteauth_jni_android_platform.rs b/remoteauth/service/jni/src/remoteauth_jni_android_platform.rs index 0a189f2..421fe7e 100644 --- a/remoteauth/service/jni/src/remoteauth_jni_android_platform.rs +++ b/remoteauth/service/jni/src/remoteauth_jni_android_platform.rs
@@ -67,7 +67,7 @@ logger::init( logger::Config::default() .with_tag_on_device("remoteauth") - .with_min_level(log::Level::Trace) + .with_max_level(log::LevelFilter::Trace) .with_filter("trace,jni=info"), ); }
diff --git a/remoteauth/service/jni/src/remoteauth_jni_android_protocol.rs b/remoteauth/service/jni/src/remoteauth_jni_android_protocol.rs index ac2eb8c..e44ab8b 100644 --- a/remoteauth/service/jni/src/remoteauth_jni_android_protocol.rs +++ b/remoteauth/service/jni/src/remoteauth_jni_android_protocol.rs
@@ -30,7 +30,7 @@ logger::init( logger::Config::default() .with_tag_on_device("remoteauth") - .with_min_level(log::Level::Trace) + .with_max_level(log::LevelFilter::Trace) .with_filter("trace,jni=info"), ); get_boolean_result(native_init(env), "native_init")