This logging window receives logging information through a WCF service that is hosted, right into Visual Studio. Needs the appropriate logger (which for now only is avalable throuh an internal AkzoNobel NuGet server). Please contact the AkzoNobel Deco Color IT team for more information on how to use this logger. This is the interface for the service: [ServiceContract] public interface ILoggingService { [OperationContract] void Clear(); [OperationContract] void Log(string origin, DateTime logTime, int loglevel, string message, string category, string source, int linenumber); [OperationContract] void Pause(); [OperationContract] bool PleaseClose(); [OperationContract] void Resume(); } |