X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=altosuilib%2FAltosUIMap.java;h=3e4cbe9b8a3e657860c308a52e7a5210313904b0;hp=364540542c7488c6db120fb13a9570997e2dae2c;hb=238e56e0f6ab2f623e0faf25298b38dc3a4aff74;hpb=0d966b74f756e88e5dffa92400b105f540429262 diff --git a/altosuilib/AltosUIMap.java b/altosuilib/AltosUIMap.java index 36454054..3e4cbe9b 100644 --- a/altosuilib/AltosUIMap.java +++ b/altosuilib/AltosUIMap.java @@ -3,7 +3,8 @@ * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; version 2 of the License. + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of @@ -361,7 +362,8 @@ public class AltosUIMap extends JComponent implements AltosFlightDisplay, AltosM } public void debug(String format, Object ... arguments) { - System.out.printf(format, arguments); + if (AltosUIPreferences.serial_debug()) + System.out.printf(format, arguments); }