We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f864cdc + 6d5431f commit d025638Copy full SHA for d025638
app/src/processing/app/Sketch.java
@@ -1682,7 +1682,7 @@ protected void size(PreferencesMap prefs) throws RunnerException {
1682
1683
int warnDataPercentage = Integer.parseInt(prefs.get("build.warn_data_percentage"));
1684
if (maxDataSize > 0 && dataSize > maxDataSize*warnDataPercentage/100)
1685
- System.out.println(_("Low memory available, stability problems may occur"));
+ System.err.println(_("Low memory available, stability problems may occur."));
1686
}
1687
1688
protected boolean upload(String buildPath, String suggestedClassName, boolean usingProgrammer) throws Exception {
0 commit comments