websocket-server – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5  
6 namespace WebSockets.Common
7 {
8 public interface IWebSocketLogger
9 {
10 void Information(Type type, string format, params object[] args);
11 void Warning(Type type, string format, params object[] args);
12 void Error(Type type, string format, params object[] args);
13 void Error(Type type, Exception exception);
14 }
15 }