Example #1
0
 /// <inheritdoc/>
 public void CommitAndPushChanges(string org, string repository, string branchName, string localPath, string message)
 {
     try
     {
         _decoratedService.CommitAndPushChanges(org, repository, branchName, localPath, message);
     }
     catch (Exception ex)
     {
         LogError(ex, "CommitAndPushChanges", org, repository);
         throw;
     }
 }