[jboss-svn-commits] JBL Code SVN: r32823 - labs/jbossesb/trunk/product/rosetta/src/org/jboss/soa/esb/notification.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Tue May 11 12:15:43 EDT 2010
Author: tcunning
Date: 2010-05-11 12:15:42 -0400 (Tue, 11 May 2010)
New Revision: 32823
Modified:
labs/jbossesb/trunk/product/rosetta/src/org/jboss/soa/esb/notification/NotifyFTPList.java
Log:
JBESB-3233
Turn down logging from info to debug.
Modified: labs/jbossesb/trunk/product/rosetta/src/org/jboss/soa/esb/notification/NotifyFTPList.java
===================================================================
--- labs/jbossesb/trunk/product/rosetta/src/org/jboss/soa/esb/notification/NotifyFTPList.java 2010-05-11 16:13:05 UTC (rev 32822)
+++ labs/jbossesb/trunk/product/rosetta/src/org/jboss/soa/esb/notification/NotifyFTPList.java 2010-05-11 16:15:42 UTC (rev 32823)
@@ -127,7 +127,7 @@
private void sendFile( final File file, final Message message ) throws NotificationException
{
- log.info( "Sending file [" + file.getAbsolutePath() + "]" );
+ log.debug( "Sending file [" + file.getAbsolutePath() + "]" );
message.getBody().add( FILE_LOCATION, file );
send ( message );
}
@@ -139,13 +139,13 @@
{
reader = new BufferedReader( new FileReader( listFile ) );
String fileName = null;
- log.info( "Sending from listFile [" + listFile.getAbsolutePath() + "]" );
+ log.debug( "Sending from listFile [" + listFile.getAbsolutePath() + "]" );
while ( (fileName = reader.readLine() ) != null )
{
message.getBody().add( FILE_LOCATION, new File ( fileName ) );
send ( message );
}
- log.info( "Done sending from listFile [" + listFile.getAbsolutePath() + "]" );
+ log.debug( "Done sending from listFile [" + listFile.getAbsolutePath() + "]" );
}
catch (FileNotFoundException e)
{
More information about the jboss-svn-commits
mailing list