moving message to LOG instead of print to karaf console 48/19348/1
authorJamo Luhrsen <james.luhrsen@hp.com>
Wed, 29 Apr 2015 21:21:05 +0000 (14:21 -0700)
committerJamo Luhrsen <james.luhrsen@hp.com>
Wed, 29 Apr 2015 21:21:57 +0000 (14:21 -0700)
Change-Id: I5b275ee2a3090649cc6826cafa77cd116ad538f6
Signed-off-by: Jamo Luhrsen <james.luhrsen@hp.com>
applications/forwardingrules-manager/src/main/java/org/opendaylight/openflowplugin/applications/frm/impl/TableForwarder.java

index 6981b379bfc7702a58a7865141918855073007bf..813e0e9e9934488e7aaaeb657d5b1bc51cfc85a0 100644 (file)
@@ -101,7 +101,7 @@ public class TableForwarder extends AbstractListeningCommiter<Table> {
         LOG.debug( "Invoking SalTableService " ) ;
 
         if( this.provider.getSalTableService() != null )
-               System.out.println( " Handle to SalTableServices" + this.provider.getSalTableService()) ;
+               LOG.debug( " Handle to SalTableServices" + this.provider.getSalTableService()) ;
         this.provider.getSalTableService().updateTable(builder.build());
 
     }