* better tracing

This commit is contained in:
Reinhard Pointner 2012-07-31 00:00:46 +00:00
parent 0cb56f905d
commit b9bcd3415d
1 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ def groups = input.groupBy{ f ->
} }
// log movie/series/anime detection results // log movie/series/anime detection results
groups.each{ group -> _log.finest("Group: $group") } groups.each{ group, files -> _log.finest("Group: $group => ${files*.name}") }
// process each batch // process each batch
groups.each{ group, files -> groups.each{ group, files ->
@ -198,7 +198,7 @@ if (gmail && getRenameLog().size() > 0) {
} }
}, },
messagemimetype: "text/html", messagemimetype: "text/html",
to: tryQuietly{ gmail2 } ?: gmail[0] =~ /@/ ? gmail[0] : gmail[0] + '@gmail.com', to: tryQuietly{ gmail2 } ?: gmail[0] + '@gmail.com',
user: gmail[0], password: gmail[1] user: gmail[0], password: gmail[1]
) )
} }