This repository was archived by the owner on Dec 13, 2018. It is now read-only.
This repository was archived by the owner on Dec 13, 2018. It is now read-only.
Logger from Type name shouldn't include generic parameters #326
Closed
Description
At the moment I believe an ILogger for MyNamespace.MyClass<AnotherNamespace.AnotherType>
will return a logger category name which ends with the <AnotherNamespace.AnotherType>
It shouldn't, really, because the logging configuration decisions should be made only on the MyNamespace.MyClass
portion. Especially because systems which do logger configuration inheritance are based on a .
delimiter the portion of the name MyClass<AnotherNamespace
defeats that convention.