diff Implab/Diagnostics/IEventListener.cs @ 35:2880242f987a diagnostics

initial log capabilities
author cin
date Mon, 14 Apr 2014 18:25:26 +0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Implab/Diagnostics/IEventListener.cs	Mon Apr 14 18:25:26 2014 +0400
@@ -0,0 +1,11 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Implab.Diagnostics {
+    public interface IEventListener {
+        void TraceEvent(LogContext context, TraceEventType type, string format, params object[] args);
+    }
+}