summaryrefslogtreecommitdiff
path: root/lib/LogFactory.cs
blob: 1a89cbe7438aee0f72d055aa4f41386cf39b8e12 (plain)
1
2
3
4
5
6
7
8
9
using System;

namespace jive
{
  public interface LogFactory
  {
    Logger create_for(Type type_to_create_logger_for);
  }
}