We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2268aa commit e995308Copy full SHA for e995308
src/ESP32FS.java
@@ -96,10 +96,10 @@ private int listenOnProcess(String[] arguments){
96
Runtime rt = Runtime.getRuntime();
97
Process proc = rt.exec(arguments);
98
// any error message?
99
- StreamGobbler errorGobbler = new StreamGobbler(proc.getErrorStream(), "E");
+ StreamGobbler errorGobbler = new StreamGobbler(proc.getErrorStream(), "_");
100
101
// any output?
102
- StreamGobbler outputGobbler = new StreamGobbler(proc.getInputStream(), "O");
+ StreamGobbler outputGobbler = new StreamGobbler(proc.getInputStream(), "-");
103
104
// kick them off
105
errorGobbler.start();
0 commit comments