inside the option 2, you could also emit the gette...
# announcements
k
inside the option 2, you could also emit the getter and the setter and create a facade property in the object it self
m
Do you mean this?
Copy code
class AllureLogsFilterHandler {

    var logInThread: String
        get() = filterContainer.testFilterLog
        set(log) {
            filterContainer.testFilterLog = log
        }

    companion object {
        var filterContainer = AllureLogsFilterContainer()
    }
}
may be this
Copy code
class AllureLogsFilterHandler {
    companion object {
        var filterContainer = AllureLogsFilterContainer()
        
        var logInCurrentThread: String
            get() = filterContainer.testFilterLog
            set(log) {
                filterContainer.testFilterLog = log
            }
    }
}
k
the first one