rust-lang / log

Logging implementation for Rust
https://docs.rs/log
Apache License 2.0
2.12k stars 248 forks source link

Remove `ok_or` in favor of `Option::ok_or` #607

Closed AngelicosPhosphoros closed 7 months ago

AngelicosPhosphoros commented 7 months ago

Usages of Option::ok_or were removed because it was unstable at the time. It is now stable of MSRV.

Thomasdezeeuw commented 7 months ago

Thanks @AngelicosPhosphoros