Skip to content

Commit e6931cf

Browse files
author
Marcin Radomski
committed
Fix typos
1 parent a14e0c8 commit e6931cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ by efficiently splitting messages into chunks.
6868
## Consistent log filtering in mixed Rust/C/C++ apps
6969

7070
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)
7272
of a process-wide global variable, [system-wide
7373
properties](https://cs.android.com/android/platform/superproject/main/+/main:system/logging/logd/README.property;l=45;drc=99c545d3098018a544cb292e1501daca694bee0f),
7474
and call-specific default. `log` + `android_logger` crates add another layer of
@@ -102,7 +102,7 @@ and Rust calls.
102102

103103
If you build `android_logger` with `android-api-30` feature enabled, the logger
104104
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))
106106
and Android system properties when deciding if a message should be logged or
107107
not. In this case, the effective log level is the _least verbose_ of the levels
108108
set between those and Rust log facilities.

0 commit comments

Comments
 (0)