Skip to content

Commit

Permalink
Merge pull request #17619 from tamasvajk/text-file-archiving-warning
Browse files Browse the repository at this point in the history
C#: reduce extraction message severity for missing text files
  • Loading branch information
tamasvajk authored Sep 30, 2024
2 parents 6f74387 + 29948e4 commit 752502b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csharp/extractor/Semmle.Extraction.CSharp/Entities/File.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public override void Populate(TextWriter trapFile)
}
catch (Exception exc)
{
Context.ExtractionError($"Couldn't read file: {originalPath}. {exc.Message}", null, null, exc.StackTrace);
Context.ExtractionError($"Couldn't read file: {originalPath}. {exc.Message}", null, null, exc.StackTrace, Semmle.Util.Logging.Severity.Warning);
}
}

Expand Down

0 comments on commit 752502b

Please sign in to comment.