Skip to content

Commit

Permalink
Tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
blowfishpro committed Oct 14, 2017
1 parent b0e02e0 commit ba24af3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ModuleManager/MMPatchLoader.cs
Expand Up @@ -484,6 +484,8 @@ private bool CheckFilesChange(UrlDir.UrlFile[] files, ConfigNode shaConfigNode)
{
bool noChange = true;
StringBuilder changes = new StringBuilder();

changes.Append("Changes :\n");

for (int i = 0; i < files.Length; i++)
{
Expand Down Expand Up @@ -516,7 +518,7 @@ private bool CheckFilesChange(UrlDir.UrlFile[] files, ConfigNode shaConfigNode)
noChange = false;
}
if (!noChange)
logger.Info("Changes :\n" + changes.ToString());
logger.Info(changes.ToString());
return noChange;
}

Expand Down

0 comments on commit ba24af3

Please sign in to comment.