mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-16 06:15:02 -05:00
switched to using global logger
This commit is contained in:
parent
f3d1cc50c0
commit
ae5c5c5e3a
@ -12,7 +12,7 @@ import javax.swing.SwingWorker;
|
|||||||
|
|
||||||
public class ChecksumComputationTask extends SwingWorker<Long, Object> {
|
public class ChecksumComputationTask extends SwingWorker<Long, Object> {
|
||||||
|
|
||||||
private static final int CHUNK_SIZE = 20 * 1024;
|
private static final int CHUNK_SIZE = 32 * 1024;
|
||||||
|
|
||||||
private File file;
|
private File file;
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ public abstract class FileTransferablePolicy extends TransferablePolicy {
|
|||||||
if (file.exists())
|
if (file.exists())
|
||||||
files.add(file);
|
files.add(file);
|
||||||
} catch (URISyntaxException e) {
|
} catch (URISyntaxException e) {
|
||||||
Logger.getAnonymousLogger().log(Level.WARNING, "Invalid file url: " + line, e);
|
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME).log(Level.WARNING, "Invalid file url: " + line, e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ public class AnidbClient extends EpisodeListClient {
|
|||||||
cache.put(title, url);
|
cache.put(title, url);
|
||||||
shows.add(title);
|
shows.add(title);
|
||||||
} catch (MalformedURLException e) {
|
} catch (MalformedURLException e) {
|
||||||
Logger.getAnonymousLogger().log(Level.WARNING, "Invalid href: " + href, e);
|
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME).log(Level.WARNING, "Invalid href: " + href, e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,7 @@ public class ImdbSearchEngine {
|
|||||||
try {
|
try {
|
||||||
movies.add(parseMovie(node));
|
movies.add(parseMovie(node));
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.getAnonymousLogger().log(Level.WARNING, "Invalid movie node", e);
|
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME).log(Level.WARNING, "Invalid movie node", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ public class TVRageClient extends EpisodeListClient {
|
|||||||
cache.put(title, url);
|
cache.put(title, url);
|
||||||
shows.add(title);
|
shows.add(title);
|
||||||
} catch (MalformedURLException e) {
|
} catch (MalformedURLException e) {
|
||||||
Logger.getAnonymousLogger().log(Level.WARNING, "Invalid href: " + href, e);
|
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME).log(Level.WARNING, "Invalid href: " + href, e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ public class TvdotcomClient extends EpisodeListClient {
|
|||||||
cache.put(title, url);
|
cache.put(title, url);
|
||||||
shows.add(title);
|
shows.add(title);
|
||||||
} catch (MalformedURLException e) {
|
} catch (MalformedURLException e) {
|
||||||
Logger.getAnonymousLogger().log(Level.WARNING, "Invalid href: " + href, e);
|
Logger.getLogger(Logger.GLOBAL_LOGGER_NAME).log(Level.WARNING, "Invalid href: " + href, e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -118,7 +118,8 @@ public class TvdotcomClient extends EpisodeListClient {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public URL getEpisodeListUrl(String showname, int season) {
|
@Override
|
||||||
|
public URL getEpisodeListUrl(String showname, int season) {
|
||||||
try {
|
try {
|
||||||
String summaryFile = cache.get(showname).getFile();
|
String summaryFile = cache.get(showname).getFile();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user