Quati Logger
interface QuatiLogger
usage:
class Foobar {
companion object : QuatiLogger.Base()
}
Content copied to clipboard
Alternative: use an interface to avoid using an abstract class:
class Foobar {
companion object : QuatiLogger by QuatiLogger.create(Foobar::class)
}
Content copied to clipboard