diff options
author | Keith Packard <keithp@keithp.com> | 2015-05-29 09:49:30 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2015-05-29 09:49:30 -0700 |
commit | 0beb02f1848e34892cca6e34ba83d6ca836d6df2 (patch) | |
tree | 3ad6b436e7c1ac354ce65d9ad92d73fa6067ce64 /altoslib/AltosMapInterface.java | |
parent | 4f1c4dddbce7b4e8673173f1690f79ba60e72ba2 (diff) |
altoslib: Require 'debug' hook in AltosMapInterface
This lets the map users redirect debug messages as appropriate
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosMapInterface.java')
-rw-r--r-- | altoslib/AltosMapInterface.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/altoslib/AltosMapInterface.java b/altoslib/AltosMapInterface.java index 195574e9..e6cb5971 100644 --- a/altoslib/AltosMapInterface.java +++ b/altoslib/AltosMapInterface.java @@ -40,4 +40,6 @@ public interface AltosMapInterface { public abstract void repaint(AltosRectangle damage); public abstract void set_zoom_label(String label); + + public abstract void debug(String format, Object ... arguments); } |