File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ by efficiently splitting messages into chunks.
68
68
## Consistent log filtering in mixed Rust/C/C++ apps
69
69
70
70
Android's C logging API determines the effective log level based on [ a
71
- combination] ( https://cs.android.com/android/platform/superproject/main/+/main:system/logging/liblog/properties.cpp;l=243;drc=b74a506c1b69f5b295a8cdfd7e2da3b16db15934 ) ,
71
+ combination] ( https://cs.android.com/android/platform/superproject/main/+/main:system/logging/liblog/properties.cpp;l=243;drc=b74a506c1b69f5b295a8cdfd7e2da3b16db15934 )
72
72
of a process-wide global variable, [ system-wide
73
73
properties] ( https://cs.android.com/android/platform/superproject/main/+/main:system/logging/logd/README.property;l=45;drc=99c545d3098018a544cb292e1501daca694bee0f ) ,
74
74
and call-specific default. ` log ` + ` android_logger ` crates add another layer of
@@ -102,7 +102,7 @@ and Rust calls.
102
102
103
103
If you build ` android_logger ` with ` android-api-30 ` feature enabled, the logger
104
104
will consider the process-wide global state (set via
105
- [ ` __android_log_set_minimum_priority ` ] ( https://cs.android.com/android/platform/superproject/main/+/main:prebuilts/runtime/mainline/runtime/sdk/common_os/include/system/logging/liblog/include/android/log.h;l=364;drc=4cf460634134d51dba174f8af60dffb10f703f51 )
105
+ [ ` __android_log_set_minimum_priority ` ] ( https://cs.android.com/android/platform/superproject/main/+/main:prebuilts/runtime/mainline/runtime/sdk/common_os/include/system/logging/liblog/include/android/log.h;l=364;drc=4cf460634134d51dba174f8af60dffb10f703f51 ) )
106
106
and Android system properties when deciding if a message should be logged or
107
107
not. In this case, the effective log level is the _ least verbose_ of the levels
108
108
set between those and Rust log facilities.
You can’t perform that action at this time.
0 commit comments