Example #1
0
 internal static void UpdateIssueTrackerField(
     IRestApi restApi,
     string plugName,
     string projectKey,
     string taskNumber,
     string fieldName,
     string fieldValue)
 {
     try
     {
         restApi.UpdateIssueTrackerField(plugName, projectKey, taskNumber, fieldName, fieldValue);
     }
     catch (System.Exception e)
     {
         mLog.ErrorFormat("Error updating issue tracker field:{0}", e.Message);
     }
 }