Re: How do I log into a JavaFX text area?

2014-07-21 Thread Maciej Skrzetuski
Thanks Matt. This is working after enabling annotation processing and adding the log4j2 core jar file to the so called factory path in Eclipse. I think this should go into the official documentation. On 20 July 2014 22:45, Matt Sicker boa...@gmail.com wrote: You'll have to enable annotation

Re: How do I log into a JavaFX text area?

2014-07-20 Thread Maciej Skrzetuski
Hi Matt, thanks for replying and your suggestions. I did what you said but the CLASS_NOT_FOUND error still occurs. The debug log is at http://pastebin.com/595Q0bXY. The TextAreaAppender now looks like this http://pastebin.com/SyzDNhGg and the log4j2.xml like this http://pastebin.com/zF7jPVrL.

Re: How do I log into a JavaFX text area?

2014-07-20 Thread Ralph Goers
This is with version 2.0? Sent from my iPad On Jul 20, 2014, at 3:45 AM, Maciej Skrzetuski m.skrzetu...@gmail.com wrote: Hi Matt, thanks for replying and your suggestions. I did what you said but the CLASS_NOT_FOUND error still occurs. The debug log is at http://pastebin.com/595Q0bXY.

Re: How do I log into a JavaFX text area?

2014-07-20 Thread Maciej Skrzetuski
Hi Ralph, yes, this is the 2.0 release version. Not the release *candidate* 2. Kind regards Maciej On 20 July 2014 16:12, Ralph Goers rgo...@apache.org wrote: This is with version 2.0? Sent from my iPad On Jul 20, 2014, at 3:45 AM, Maciej Skrzetuski m.skrzetu...@gmail.com wrote: Hi

Re: How do I log into a JavaFX text area?

2014-07-20 Thread Matt Sicker
How are you building this? On 20 July 2014 09:29, Maciej Skrzetuski m.skrzetu...@gmail.com wrote: Hi Ralph, yes, this is the 2.0 release version. Not the release *candidate* 2. Kind regards Maciej On 20 July 2014 16:12, Ralph Goers rgo...@apache.org wrote: This is with version 2.0?

Re: How do I log into a JavaFX text area?

2014-07-20 Thread Maciej Skrzetuski
I am hitting the *play* button (run actually) in Eclipse in my Java project. I am not using Maven or Ant for building the project. On 20 July 2014 20:58, Matt Sicker boa...@gmail.com wrote: How are you building this? On 20 July 2014 09:29, Maciej Skrzetuski m.skrzetu...@gmail.com wrote:

Re: How do I log into a JavaFX text area?

2014-07-20 Thread Matt Sicker
You'll have to enable annotation processing in Eclipse. This looks somewhat dated, but it might still be relevant: http://www.eclipse.org/jdt/apt/introToAPT.php On 20 July 2014 14:08, Maciej Skrzetuski m.skrzetu...@gmail.com wrote: I am hitting the *play* button (run actually) in Eclipse in

How do I log into a JavaFX text area?

2014-07-19 Thread Maciej Skrzetuski
Hello there, I tried to write a custom appender but that does not work at all. The class that I implemented can be seen at http://pastebin.com/X2EUsYgP. The configuration file that I am using at http://pastebin.com/TsXJp7eU. I am getting the following exception. 2014-07-19 23:44:49,494 ERROR

Re: How do I log into a JavaFX text area?

2014-07-19 Thread Matt Sicker
First of all, you don't need to use the packages attribute in Configuration. Secondly, you need to add the following two parameters to your factory: @PluginElement(Layout) Layout? extends Serializable layout @PluginElement(Filter) final Filter filter In your example, at the very least, you need