private Logrila.Logging.LogOutputProvider ConvertProvider(Sangmado.Inka.Logging.LogOutputProvider provider)
 {
     return(() =>
     {
         object obj = provider();
         return obj == null ? "" : obj.ToString();
     });
 }
 public void Info(Sangmado.Inka.Logging.LogOutputProvider messageProvider)
 {
     _log.Info(ConvertProvider(messageProvider));
 }