Open calippo opened 8 years ago
for example in:
package kittens trait MyModule { trait My { } }
Logger.nameOf[My] returns MyModule.this.My, and it ignores the package. It would be nice it returns the whole path, recursively searching for the outer module.
Logger.nameOf[My]
MyModule.this.My
@calippo any updates?
for example in:
Logger.nameOf[My]
returnsMyModule.this.My
, and it ignores the package. It would be nice it returns the whole path, recursively searching for the outer module.