main
1using System;
2
3namespace jive
4{
5  public interface LogFactory
6  {
7    Logger create_for(Type type_to_create_logger_for);
8  }
9}