JVM Languages
logging.txt
Associated article: A Portable Distributed Event-Logging Facility
Tags: JVM Languages
Published source code accompanying the article by by Ivan Kiselev in which he presents a distributed portable event logging facility that is simple, flexible, and relatively platform independent. Also see LOGGING.ZIP.
Distributed Event Logging
by Ivan Kiselev
Example 1:
interface EventLog
{
void log(in string aHost, // a host name
in string aType, // event type
in string aSource, // source name
in string aMessage); // text message
};
Listing One
public class Log extends Exception
{
private ...


