ponder-lab / Optimize-Java-8-Streams-Refactoring

Refactorings for optimizing Java 8 stream client code for greater parallelism and efficiency.
http://cuny.is/streams
Eclipse Public License 1.0
8 stars 7 forks source link

Specialize logging #70

Closed khatchad closed 7 years ago

khatchad commented 7 years ago

Right now, we're using a global logger. We should use our own so that we can tweak the parameters if necessary.

khatchad commented 7 years ago

private static final Logger LOGGER = Logger.getGlobal(); to private static final Logger LOGGER = Logger.getLogger("edu.cuny.hunter.streamrefactoring");