Skip to content

Commit

Permalink
Make log messages consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
blowfishpro committed Aug 30, 2017
1 parent bf640f4 commit f751ed4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PatchProgress.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ public void PatchAdded()

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

public void NodeCopied(string url, string patchUrl)
{
logger.Info($"Copying Node {url} using {patchUrl}");
logger.Info($"Applying copy {patchUrl} to {url}");
}

public void NodeDeleted(string url, string patchUrl)
{
logger.Info($"Deleting Node {url} using {patchUrl}");
logger.Info($"Applying delete {patchUrl} to {url}");
}

public void PatchApplied()
Expand Down

0 comments on commit f751ed4

Please sign in to comment.