Hi, I have a library that allows various components written in different programming languages (perl, python, java) to talk to each other, and I'd like to capture the different log messages from each component and display them in a centralized GUI application. I wonder if the following is possible:
Each component logs its event messages using log4j and directs the messages to a socket using the SocketAppender. The idea is the I can then use chainsaw to read the messages from the socket and display them in the GUI. So far, I have no problem in getting Java to work with log4j and chainsaw, and it seems to work for Perl as well (according its FAQ), but the questions I have is Python. I've founded very little information on this. Does anyone have an suggestion? Thanks!
