view 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 source

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);
    }
}