From 0632e67255c179ac4b5299213c17b0eb98eb48d8 Mon Sep 17 00:00:00 2001 From: Luis Majano Date: Wed, 16 Nov 2022 20:51:48 +0100 Subject: [PATCH 1/2] version bump --- box.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/box.json b/box.json index bfd1af3..355c10f 100644 --- a/box.json +++ b/box.json @@ -1,6 +1,6 @@ { "name":"ColdBox Mail Services", - "version":"2.6.0", + "version":"2.7.0", "location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbmailservices/@build.version@/cbmailservices-@build.version@.zip", "author":"Ortus Solutions.com Date: Mon, 21 Nov 2022 17:13:41 +0100 Subject: [PATCH 2/2] * Less verbosity for the mail queue log --- box.json | 2 +- changelog.md | 8 ++++++++ config/Scheduler.cfc | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/box.json b/box.json index 355c10f..bcac392 100644 --- a/box.json +++ b/box.json @@ -1,6 +1,6 @@ { "name":"ColdBox Mail Services", - "version":"2.7.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()#" ); } ); }