diff --git a/box.json b/box.json index bfd1af3..bcac392 100644 --- a/box.json +++ b/box.json @@ -1,6 +1,6 @@ { "name":"ColdBox Mail Services", - "version":"2.6.0", + "version":"2.6.1", "location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbmailservices/@build.version@/cbmailservices-@build.version@.zip", "author":"Ortus Solutions.com 2022-NOV-21 + +### Changed + +* Less verbosity for the mail queue log + +---- + ## [v2.6.0] => 2022-NOV-15 ### Added diff --git a/config/Scheduler.cfc b/config/Scheduler.cfc index fc3b27d..a6eed5b 100644 --- a/config/Scheduler.cfc +++ b/config/Scheduler.cfc @@ -22,7 +22,7 @@ component { log.error( "Error running mail services queue processing: #exception.message & exception.detail#", exception.stacktrace ); } ) .onSuccess( function( task, results ){ - log.info( "Mail queue finished processing successfully: #task.getStats().toString()#" ); + log.debug( "Mail queue finished processing successfully: #task.getStats().toString()#" ); } ); }