Example #1
0
 /// <inheritdoc/>
 public Task <Branch> CreateBranch(string org, string repository, string branchName)
 {
     try
     {
         return(_decoratedService.CreateBranch(org, repository, branchName));
     }
     catch (Exception ex)
     {
         LogError(ex, "CreateBranch", org, repository);
         throw;
     }
 }