Skip to content

Commit

Permalink
Make deletes and copies count toward patch count
Browse files Browse the repository at this point in the history
  • Loading branch information
blowfishpro committed Aug 30, 2017
1 parent cc4cbec commit f03b578
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PatchProgress.cs
Expand Up @@ -51,11 +51,13 @@ public void NodePatched(string url, string patchUrl)
public void NodeCopied(string url, string patchUrl)
{
logger.Info($"Applying copy {patchUrl} to {url}");
PatchedNodeCount += 1;
}

public void NodeDeleted(string url, string patchUrl)
{
logger.Info($"Applying delete {patchUrl} to {url}");
PatchedNodeCount += 1;
}

public void PatchApplied()
Expand Down

0 comments on commit f03b578

Please sign in to comment.