Skip to content

5.1.0

Compare
Choose a tag to compare
@giginet giginet released this 01 May 11:13
· 56 commits to master since this release
58c3377

Compatibility warning

You have to migrate to a new API.
Use InstantiatableFilter / InstantiatableOutput instead of Filter / Output.

import Puree
struct YourLogFilter: InstantiatableFilter {
    let tagPattern: TagPattern

    init(tagPattern: TagPattern, options: FilterOptions?) {
        self.tagPattern = tagPattern
    }
}