Skip to content

Commit

Permalink
Removed unnecessary logging in StepDefinition.
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlawrence committed Dec 17, 2009
1 parent c75402f commit e3b8af6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Cuke4Nuke/Core/StepDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ public override int GetHashCode()
internal List<StepArgument> ArgumentsFrom(string stepName)
{
List<StepArgument> arguments = null;
Match match = _regex.Match(stepName);
log.Debug((match.Success) ? "Match" : "No match");
Match match = _regex.Match(stepName);
if(match.Success)
{
arguments = new List<StepArgument>();
Expand Down

0 comments on commit e3b8af6

Please sign in to comment.