You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a class MainActivity with a companion object that extends KLogging():
I noticed that the tag name changes when R8 is on:
When R8 is on: io.github.getsixtyfour.openpyn.MainActivity$b
When R8 is off: io.github.getsixtyfour.openpyn.MainActivity
Browsing the code I noticed that KLoggerNameResolver is responsible for unwrapping the companion class to the enclosing class, I am however uncertain if there is a bug in the implementation or if R8 is doing something funky of which I am unfamiliar with...