Remove system.out's

This commit is contained in:
CocoTheOwner
2021-08-13 20:12:35 +02:00
parent 30c5a0d9cd
commit 0f0c24d31b
3 changed files with 10 additions and 5 deletions

View File

@@ -65,7 +65,7 @@ public class J {
a.run();
} catch (Throwable e) {
Iris.reportError(e);
System.out.println("Failed to run async task");
Iris.error("Failed to run async task");
e.printStackTrace();
}
});
@@ -77,7 +77,7 @@ public class J {
a.run();
} catch (Throwable e) {
Iris.reportError(e);
System.out.println("Failed to run async task");
Iris.error.println("Failed to run async task");
e.printStackTrace();
}
});