We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 596b92d + bc026f5 commit 0566b16Copy full SHA for 0566b16
src/lib.rs
@@ -256,7 +256,7 @@ impl Config {
256
}
257
258
259
-struct PlatformLogWriter<'a> {
+pub struct PlatformLogWriter<'a> {
260
#[cfg(target_os = "android")] priority: LogPriority,
261
#[cfg(not(target_os = "android"))] priority: Level,
262
len: usize,
@@ -324,7 +324,7 @@ impl<'a> PlatformLogWriter<'a> {
324
325
326
/// Flush everything remaining to android logger.
327
- fn flush(&mut self) {
+ pub fn flush(&mut self) {
328
let total_len = self.len;
329
330
if total_len == 0 {
0 commit comments