diff tango/example/logging/chainsaw.d @ 132:1700239cab2e trunk

[svn r136] MAJOR UNSTABLE UPDATE!!! Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tango/example/logging/chainsaw.d	Fri Jan 11 17:57:40 2008 +0100
@@ -0,0 +1,30 @@
+import  tango.core.Thread;
+
+import  tango.util.log.Log,
+        tango.util.log.Log4Layout,
+        tango.util.log.SocketAppender;
+
+import  tango.net.InternetAddress;
+
+
+/*******************************************************************************
+
+        Hooks up to Chainsaw for remote log capture. Chainsaw should be 
+        configured to listen with an XMLSocketReciever
+
+*******************************************************************************/
+
+void main()
+{
+        // get a logger to represent this module
+        auto logger = Log.getLogger ("example.chainsaw");
+
+        // hook up an appender for XML output
+        logger.addAppender (new SocketAppender (new InternetAddress("127.0.0.1", 4448), new Log4Layout));
+
+        while (true)
+              {
+              logger.info ("Hello Chainsaw!");      
+              Thread.sleep (1.0);
+              }
+}