Skip to content

Commit

Permalink
fix: maintainance issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsee committed May 26, 2024
1 parent 81a8324 commit 45648e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BSH.Engine/Services/FileCollector/IFileExclusion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ public bool IsFileExcluded(FileTableRow file)
return true;
}
}
catch
catch (Exception ex)
{
_logger.Error("{fileName} was not ignored due to error with regular expressions {expr}",
_logger.Error(ex, "{fileName} was not ignored due to error with regular expressions {expr}",
file.FileNamePath(),
configurationManager.ExcludeMask);
return false;
Expand Down

0 comments on commit 45648e5

Please sign in to comment.