I would like to write a GUI application that has a big control in it that displays output of logging.
It would have a dropdown menu to filter it.
So therefore I need to find a Logging library for java that allows me to:
Create a custom class to interface with the output, so that i can redirect it to my GUI control
Allow me to assign a custom tag to what I am logging...
e.g. log("abc", "it's tuesday")
e.g. log("def", "it's 2013")
e.g. log("ghi", "logging is tedious")
This is optional but I really would like it... ability to filter based on multiple of these tags... e.g. show output of "abc" and "def" but not "ghi"
Any suggestions? and, if you can, please list any other reasons the suggest library is good to use.
thanks.