I have a scenario where I could reduce the number of targets in a configuration file if I could log the name of the logger before the trailing dot character.
Using ${logger:shortName=true} it is possible to render the short name of the logger, that is by definition the part after the trailing dot character. However what I want to log is the part before the dot character.
For example I might use a logger name of MyNamespace.MyClass, using ${logger:shortName=true} I would get a value of MyClass but I cannot see a way to get a value of just MyNamespace as using ${logger:shortName=false} returns the full name of MyNamespace.MyClass.
So I would like to know if this is possible?
