X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Flibrary%2FLocalLibrary.java;fp=src%2Fbe%2Fnikiroo%2Ffanfix%2Flibrary%2FLocalLibrary.java;h=838c97cf3e8b55363ab4683b07596c6857b74ac0;hb=9b863b20370118c95c6801b73dda951c7e507871;hp=bdded01810ebedc0452867175da9eb1b3899ffdb;hpb=9e2fad3600cd08eca73d45cb5c991d98095842aa;p=fanfix.git diff --git a/src/be/nikiroo/fanfix/library/LocalLibrary.java b/src/be/nikiroo/fanfix/library/LocalLibrary.java index bdded01..838c97c 100644 --- a/src/be/nikiroo/fanfix/library/LocalLibrary.java +++ b/src/be/nikiroo/fanfix/library/LocalLibrary.java @@ -105,8 +105,6 @@ public class LocalLibrary extends BasicLibrary { String mess = "no file found for "; MetaData meta = getInfo(luid); - Instance.getTraceHandler().trace("(info is: " + meta + ")"); - File[] files = getStories(pg).get(meta); if (files != null) { mess = "file retrieved for "; @@ -114,7 +112,8 @@ public class LocalLibrary extends BasicLibrary { } Instance.getTraceHandler().trace( - this.getClass().getSimpleName() + ": " + mess + luid); + this.getClass().getSimpleName() + ": " + mess + luid + " (" + + meta.getTitle() + ")"); return file; } @@ -433,8 +432,8 @@ public class LocalLibrary extends BasicLibrary { * @param pg * the optional {@link Progress} * - * @return the list of stories (for each item, the first {@link File} is the info file, the - * second file is the target {@link File}) + * @return the list of stories (for each item, the first {@link File} is the + * info file, the second file is the target {@link File}) */ private synchronized Map getStories(Progress pg) { if (pg == null) {