apple / swift-log

A Logging API for Swift
https://apple.github.io/swift-log/
Apache License 2.0
3.48k stars 284 forks source link

Use Set to spot duplicated log handler warnings. #306

Closed PeterAdams-A closed 3 months ago

PeterAdams-A commented 3 months ago

Motivation:

Feels like a better fit for the problem when a dictionary of bools.

Modifications:

Convert storage to set.

Result:

Fewer lines of code, less waste.