1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* better tracing

This commit is contained in:
Reinhard Pointner 2012-07-31 00:00:46 +00:00
parent 0cb56f905d
commit b9bcd3415d

View File

@ -106,7 +106,7 @@ def groups = input.groupBy{ f ->
}
// 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
groups.each{ group, files ->
@ -198,7 +198,7 @@ if (gmail && getRenameLog().size() > 0) {
}
},
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]
)
}