Skip to content

Commit e995308

Browse files
authored
Update ESP32FS.java
Changed line beginnings of transferred OUTPUT and ERROR from exec to console to look clieaner
1 parent b2268aa commit e995308

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ESP32FS.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ private int listenOnProcess(String[] arguments){
9696
Runtime rt = Runtime.getRuntime();
9797
Process proc = rt.exec(arguments);
9898
// any error message?
99-
StreamGobbler errorGobbler = new StreamGobbler(proc.getErrorStream(), "E");
99+
StreamGobbler errorGobbler = new StreamGobbler(proc.getErrorStream(), "_");
100100

101101
// any output?
102-
StreamGobbler outputGobbler = new StreamGobbler(proc.getInputStream(), "O");
102+
StreamGobbler outputGobbler = new StreamGobbler(proc.getInputStream(), "-");
103103

104104
// kick them off
105105
errorGobbler.start();

0 commit comments

Comments
 (0)