using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SuperSocket.SocketBase.Logging
{
///
/// LogFactory Interface
///
public interface ILogFactory
{
///
/// Gets the log by name.
///
/// The name.
///
ILog GetLog(string name);
}
}