android_logger-rs icon indicating copy to clipboard operation
android_logger-rs copied to clipboard

A Rust logging implementation for `log` which hooks to android log output

Results 6 android_logger-rs issues
Sort by recently updated
recently updated
newest added

Hi! I am trying to use your lib in my project, but it won't compile: ``` Compiling android_logger v0.11.1 error: type parameters must be declared prior to const parameters -->...

With the changes in https://github.com/Nercury/android_logger-rs/pull/46, which remove the mentioned lock, this check is now very cheap to implement. Closes #45

Android has [several different log buffers](https://developer.android.com/ndk/reference/group/logging#group___logging_1gabcd142e91968af61158b3d0b72eb72df) that can be targeted when writing a log message. This library currently only supports writing to the main buffer, but it would be useful...

This allows for better ergonomics for users that want to use the PlatformLogWriter without using the `log` crate directly, e.g. when using another logging framework to log (like slog). Without...

Implementation for #49. * Add `LogId` enum to identify the different log buffers. * Add an argument to `PlatformLogWriter::new` to allow a target buffer to be specified. * Update `Config`...

I was curious if there was a particular reason why `Log::enabled` was implemented to return `true` all the time: was it because it was never really implemented historically, or because...