Example #1
0
 /// <inheritdoc/>
 public List <Commit> Log(string org, string repository)
 {
     try
     {
         return(_decoratedService.Log(org, repository));
     }
     catch (Exception ex)
     {
         LogError(ex, "Log", org, repository);
         throw;
     }
 }
Example #2
0
 public List <Commit> Log(string owner, string repository)
 {
     return(_sourceControl.Log(owner, repository));
 }