Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public TfsReflectedWorkItemId(string ReflectedWorkItemId) : base(ReflectedWorkIt
var match = ReflectedIdRegex.Match(ReflectedWorkItemId);
if (match.Success)
{
Log.Verbose("TfsReflectedWorkItemId: Match Sucess from {ReflectedWorkItemId}: {@ReflectedWorkItemIdObject}", ReflectedWorkItemId, this);
Log.Verbose("TfsReflectedWorkItemId: Match Success from {ReflectedWorkItemId}: {@ReflectedWorkItemIdObject}", ReflectedWorkItemId, this);
_Connection = new Uri(match.Groups[1].Value);
_ProjectName = match.Groups[2].Value;
_WorkItemId = match.Groups[3].Value;
Expand Down Expand Up @@ -75,4 +75,4 @@ public override string ToString()
return string.Format("{0}/{1}/_workitems/edit/{2}", _Connection.ToString().TrimEnd('/'), _ProjectName, _WorkItemId);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private void BindProcessorOptions(ProcessorContainerOptions options, string sect
var processorTypeString = processorSection.GetValue<string>(objectTypePropertyName);
if (processorTypeString == null)
{
Log.Fatal("Your processor at `{path}` in the config does not have a property called {objectTypePropertyName} that is required to sucessfully detect the type and load it.", processorSection.Path, objectTypePropertyName);
Log.Fatal("Your processor at `{path}` in the config does not have a property called {objectTypePropertyName} that is required to successfully detect the type and load it.", processorSection.Path, objectTypePropertyName);
throw new InvalidProcessorException($"`{objectTypePropertyName}` missing");
}

Expand Down
Loading