It seems all Java logging solutions recommend creating a logger as a static field of class that needs to log.
Why these solutions choose logger instances and not just a single class with a handful of static methods?
What are the main benefits?
It seems all Java logging solutions recommend creating a logger as a static field of class that needs to log.
Why these solutions choose logger instances and not just a single class with a handful of static methods?
What are the main benefits?