I have a TXXLog Trait where I have defined the following methods instance side.
info: aString
warn: aString
debug: aString
error: aString
This worked well with my services where I had XXService uses: TXXLog
services have a default class side method that return the Default instance.
Now, I had a class where I wanted to use the trait from the class side as well.
But then, after Googling a bit, I found that there was the instance side trait and the class side trait.
What is the best practice when one wants to use, say, the TXXLog trait on the class side?