mirror of
https://git.victorphan.net/basketballcantho/Teedy_custom.git
synced 2026-08-05 05:53:12 +07:00
ffmpeg less chatty
This commit is contained in:
@@ -34,7 +34,9 @@ public class InputStreamReaderThread extends Thread {
|
|||||||
try {
|
try {
|
||||||
BufferedReader reader = closer.register(new BufferedReader(new InputStreamReader(is)));
|
BufferedReader reader = closer.register(new BufferedReader(new InputStreamReader(is)));
|
||||||
for (String line = reader.readLine(); line != null; line = reader.readLine()) {
|
for (String line = reader.readLine(); line != null; line = reader.readLine()) {
|
||||||
logger.info(String.format(name + ": %s", line));
|
if (logger.isDebugEnabled()) {
|
||||||
|
logger.debug(String.format(name + ": %s", line));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} catch (IOException x) {
|
} catch (IOException x) {
|
||||||
// NOP
|
// NOP
|
||||||
|
|||||||
Reference in New Issue
Block a user