Skip to content

Instantly share code, notes, and snippets.

@aidanmorgan
Created June 24, 2011 09:17
Show Gist options
  • Save aidanmorgan/1044477 to your computer and use it in GitHub Desktop.
Save aidanmorgan/1044477 to your computer and use it in GitHub Desktop.
/// <summary>
/// Simple interface that defines how instances of <see cref="IDistributedLog"/> can be created.
/// </summary>
public interface IDistributedLogFactory
{
/// <summary>
/// Will return a cached <see cref="IDistributedLog"/> or return a new one if one does not exist in the cache.
/// </summary>
IDistributedLog GetLogger(string loggerName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment