project-chip / rs-matter

Rust implementation of the Matter protocol. Status: Experimental
Apache License 2.0
303 stars 43 forks source link

Fix compilation with latest log version #199

Closed ivmarkov closed 3 weeks ago

ivmarkov commented 3 weeks ago

The reason why the CI of tlv-tool started failing lately is because there is a new check in latest log which checks if there are multiple, incompatible log-max-levels which are specified as features.

And we do have incompatibility:

This PR simply removes the custom levels from tlv-tool and tlv-tool will use the ones from rs-matter (which might have been the case anyway before - silently).

Open to other suggestions.