mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-09 13:59:49 -04:00
Remove debug logging
This commit is contained in:
parent
f95689b5a1
commit
df2a5f9269
@ -103,7 +103,7 @@ public class Language implements Serializable {
|
||||
String[] values = TAB.split(getProperty(code), 4);
|
||||
return new Language(code, values[0], values[1], values[2], TAB.split(values[3]));
|
||||
} catch (Exception e) {
|
||||
debug.warning("Illegal language code: " + code);
|
||||
debug.finest(cause(e)); // log and ignore
|
||||
}
|
||||
|
||||
return null;
|
||||
|
@ -30,7 +30,7 @@ public abstract class SubtitleReader implements Iterator<SubtitleElement>, Close
|
||||
try {
|
||||
current = readNext();
|
||||
} catch (Exception e) {
|
||||
debug.warning(cause(e)); // log and ignore
|
||||
debug.finest(cause(e)); // log and ignore
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user