mirror of
https://github.com/sismics/docs.git
synced 2024-11-21 13:37:56 +01:00
ffmpeg less chatty
This commit is contained in:
parent
5fbde0dca0
commit
65b038afcd
@ -34,7 +34,9 @@ public class InputStreamReaderThread extends Thread {
|
||||
try {
|
||||
BufferedReader reader = closer.register(new BufferedReader(new InputStreamReader(is)));
|
||||
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) {
|
||||
// NOP
|
||||
|
Loading…
Reference in New Issue
Block a user