Fixed logger output
This commit is contained in:
parent
28ae98bd86
commit
6d06aae46c
1 changed files with 1 additions and 5 deletions
|
@ -37,12 +37,8 @@ public class TeXUtil {
|
|||
|
||||
StringBuilder tex = new StringBuilder();
|
||||
|
||||
//tex.append(speaker.toTeX());
|
||||
|
||||
tex.append(speech.toTeX());
|
||||
|
||||
Logger.debug("TeX: " + tex);
|
||||
|
||||
return tex.toString().replace("$$SPEAKERINFO$$", speaker.toTeX());
|
||||
}
|
||||
|
||||
|
@ -75,7 +71,7 @@ public class TeXUtil {
|
|||
|
||||
|
||||
BufferedReader stdInput = new BufferedReader(new InputStreamReader(process.getInputStream()));
|
||||
System.out.println("Standard Output:");
|
||||
Logger.debug("Standard Output:");
|
||||
String s;
|
||||
while ((s = stdInput.readLine()) != null) {
|
||||
Logger.debug(s);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue