1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-22 08:22:04 +03:00
This commit is contained in:
Austin St. Aubin
2012-06-01 12:50:35 -05:00
committed by Federico Fissore
parent 739ab8c873
commit 85d1b50505

View File

@ -1641,8 +1641,8 @@ public class Sketch {
try { try {
size = sizer.computeSize(); size = sizer.computeSize();
System.out.println(I18n System.out.println(I18n
.format(_("Binary sketch size: {0} bytes (of a {1} byte maximum)"), .format(_("Binary sketch size: {0} bytes (of a {1} byte maximum) - {2}% used"),
size, maxsize)); size, maxsize, size * 100 / maxsize));
} catch (RunnerException e) { } catch (RunnerException e) {
System.err.println(I18n.format(_("Couldn't determine program size: {0}"), System.err.println(I18n.format(_("Couldn't determine program size: {0}"),
e.getMessage())); e.getMessage()));