mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-23 00:24:11 -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;
|
package org.teavm.tooling;
|
||||||
|
|
||||||
|
import java.io.BufferedOutputStream;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -487,8 +488,8 @@ public class TeaVMTool implements BaseTeaVMTool {
|
||||||
if (debugInformationGenerated) {
|
if (debugInformationGenerated) {
|
||||||
assert debugEmitter != null;
|
assert debugEmitter != null;
|
||||||
DebugInformation debugInfo = debugEmitter.getDebugInformation();
|
DebugInformation debugInfo = debugEmitter.getDebugInformation();
|
||||||
try (OutputStream debugInfoOut = new FileOutputStream(new File(targetDirectory,
|
try (OutputStream debugInfoOut = new BufferedOutputStream(new FileOutputStream(new File(targetDirectory,
|
||||||
getResolvedTargetFileName() + ".teavmdbg"))) {
|
getResolvedTargetFileName() + ".teavmdbg")))) {
|
||||||
debugInfo.write(debugInfoOut);
|
debugInfo.write(debugInfoOut);
|
||||||
}
|
}
|
||||||
log.info("Debug information successfully written");
|
log.info("Debug information successfully written");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user