LoggerMessage organisation
Looking for some insight in how people using SG logging organise their methods.
Do you have them inside the class?
disadvantages: have to make all classes that use logging partial (although maybe that isn't so bad), and also I like the ext method syntax more
or do I just accumulate a static
I like the ext method here but there is no way to separate the logging methods and make them private, so I can see the code completion getting huge and naming collisions becoming a problem
Do you have them inside the class?
disadvantages: have to make all classes that use logging partial (although maybe that isn't so bad), and also I like the ext method syntax more
or do I just accumulate a static
Log class for extension methodsI like the ext method here but there is no way to separate the logging methods and make them private, so I can see the code completion getting huge and naming collisions becoming a problem
