Craig Kaiser

Results 3 issues of Craig Kaiser

The logger can end up not being `_configured` if this is not called. This can occure when log level is set to a stricter level like `error` and no errors...

Component: core-app

I can take a stab at this if it seems plausible.

Using the following code: ```rust let mut reader = BufReader::new(connection); let mut my_str = vec![]; if let Err(error) = reader.read_until(0xA, &mut my_str) {....} ``` Where I am reading some data...

windows