Skip to content

Commit

Permalink
remove spammy logging
Browse files Browse the repository at this point in the history
  • Loading branch information
LeftofZen committed Feb 11, 2024
1 parent 606e81f commit 86ced9e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Gui/MainFormModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -337,17 +337,17 @@ public void LoadObjDirectory(string directory, IProgress<float>? progress, bool
if (a.Any() || b.Any())
{
logger.Warning("Selected directory had an index file but it was outdated; suggest recreating it when you have a moment");
logger.Warning("Files in index that weren't in the directory:");
foreach (var aa in a)
{
logger.Warning($" {aa}");
}

logger.Warning("Files in directory that weren't in the index:");
foreach (var bb in b)
{
logger.Warning($" {bb}");
}
//logger.Warning("Files in index that weren't in the directory:");
//foreach (var aa in a)
//{
// logger.Warning($" {aa}");
//}

//logger.Warning("Files in directory that weren't in the index:");
//foreach (var bb in b)
//{
// logger.Warning($" {bb}");
//}
}
}
else
Expand Down

0 comments on commit 86ced9e

Please sign in to comment.