lawrancej / logisim

Git fork of Logisim code base
http://www.cburch.com/logisim/
GNU General Public License v3.0
211 stars 104 forks source link

Use a real logging system #55

Closed allevaton closed 10 years ago

allevaton commented 10 years ago

As I fix exception handling, I notice there's no real logger to understand what's going on. There's a lot of exception handling, so logging will be great to have.

Need a good standard logger. Maybe java.util.logging to avoid any 3rd libraries?

lawrancej commented 10 years ago

SLF4J is probably fine for this purpose, since it's easy enough to swap out loggers (such as the No-op logger) for production.