Let the connection use its own logger.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 6 Jun 2013 04:34:33 +0000 (06:34 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 6 Jun 2013 20:28:12 +0000 (22:28 +0200)
src/main/java/net/pterodactylus/sonitus/data/Pipeline.java

index 3fb2810..1fcec19 100644 (file)
@@ -299,6 +299,9 @@ public class Pipeline implements Iterable<Filter> {
         */
        public static class Connection implements Runnable {
 
+               /** The logger. */
+               private static final Logger logger = Logger.getLogger(Connection.class.getName());
+
                /** The source. */
                private final Filter source;