Closed David-Engel closed 3 weeks ago
Attention: Patch coverage is 91.66667%
with 1 line
in your changes missing coverage. Please review.
Project coverage is 72.03%. Comparing base (
6064d02
) to head (79ba8f7
). Report is 34 commits behind head on main.
Files with missing lines | Patch % | Lines |
---|---|---|
...c/Microsoft/Data/SqlClient/SqlClientEventSource.cs | 83.33% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Prior to these changes, AdvancedTraceBin would output messages that looked like:
"TdsParser.ReadNetworkPacketAsyncCallback | INFO | ADV | State Object Id 1, Packet read. In Buffer System.Byte[], In Bytes Read: System.Byte[]"
Note the
System.Byte[]
.After these changes, AdvanceTraceBin will actually output the buffer data (without
<clipped>
):"TdsParser.ReadNetworkPacketAsyncCallback | INFO | ADV | State Object Id 1, Packet read. In Buffer: 0401003600000100000024000601002A00<clipped>, In Bytes Read: 54"
You will also be able to specifically include/exclude AdvanceTraceBin data. It was previous gated incorrectly on the AdvancedTrace keyword.