Skip to content

Commit d025638

Browse files
committed
Merge pull request #1775 from ribbons/memory-usage
Improve low free memory reporting
2 parents f864cdc + 6d5431f commit d025638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/processing/app/Sketch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1682,7 +1682,7 @@ protected void size(PreferencesMap prefs) throws RunnerException {
16821682

16831683
int warnDataPercentage = Integer.parseInt(prefs.get("build.warn_data_percentage"));
16841684
if (maxDataSize > 0 && dataSize > maxDataSize*warnDataPercentage/100)
1685-
System.out.println(_("Low memory available, stability problems may occur"));
1685+
System.err.println(_("Low memory available, stability problems may occur."));
16861686
}
16871687

16881688
protected boolean upload(String buildPath, String suggestedClassName, boolean usingProgrammer) throws Exception {

0 commit comments

Comments
 (0)