Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
  • Loading branch information
pditommaso committed Jan 18, 2025
1 parent 5ac91f0 commit 46571eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ class GroupTupleOp {

static private List<Integer> GROUP_DEFAULT_INDEX = [0]


/**
* Comparator used to sort tuple entries (when required)
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ class LoggerHelper {
root.addAppender(syslogAppender)

// -- main package logger
def mainLevel = packages[MAIN_PACKAGE] == Level.TRACE ? Level.TRACE : Level.DEBUG
def logger = createLogger(MAIN_PACKAGE, mainLevel)
final mainLevel = packages[MAIN_PACKAGE] == Level.TRACE ? Level.TRACE : Level.DEBUG
final logger = createLogger(MAIN_PACKAGE, mainLevel)

// -- set AWS lib level to WARN to reduce noise in the log file
final AWS = 'com.amazonaws'
Expand Down

0 comments on commit 46571eb

Please sign in to comment.