Merge pull request #1775 from ribbons/memory-usage

Improve low free memory reporting
This commit is contained in:
Cristian Maglie 2014-05-03 10:59:37 +02:00
commit d025638c61
1 changed files with 1 additions and 1 deletions

View File

@ -1682,7 +1682,7 @@ public class Sketch {
int warnDataPercentage = Integer.parseInt(prefs.get("build.warn_data_percentage"));
if (maxDataSize > 0 && dataSize > maxDataSize*warnDataPercentage/100)
System.out.println(_("Low memory available, stability problems may occur"));
System.err.println(_("Low memory available, stability problems may occur."));
}
protected boolean upload(String buildPath, String suggestedClassName, boolean usingProgrammer) throws Exception {