mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
Write debug information via buffered stream
This commit is contained in:
parent
17113533fc
commit
a48e3fbd61
|
@ -15,6 +15,7 @@
|
|||
*/
|
||||
package org.teavm.tooling;
|
||||
|
||||
import java.io.BufferedOutputStream;
|
||||
import java.io.File;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
|
@ -487,8 +488,8 @@ public class TeaVMTool implements BaseTeaVMTool {
|
|||
if (debugInformationGenerated) {
|
||||
assert debugEmitter != null;
|
||||
DebugInformation debugInfo = debugEmitter.getDebugInformation();
|
||||
try (OutputStream debugInfoOut = new FileOutputStream(new File(targetDirectory,
|
||||
getResolvedTargetFileName() + ".teavmdbg"))) {
|
||||
try (OutputStream debugInfoOut = new BufferedOutputStream(new FileOutputStream(new File(targetDirectory,
|
||||
getResolvedTargetFileName() + ".teavmdbg")))) {
|
||||
debugInfo.write(debugInfoOut);
|
||||
}
|
||||
log.info("Debug information successfully written");
|
||||
|
|
Loading…
Reference in New Issue
Block a user