Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@
http.response.status_code: 200
}
}
},
{
Source: {
Length: 7
}
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ namespace Sentry.NLog
public NLog.Layouts.Layout? BreadcrumbCategory { get; set; }
public NLog.Layouts.Layout? BreadcrumbLayout { get; set; }
public NLog.Layouts.Layout? Dsn { get; set; }
[System.Obsolete("Logs are always enabled. This option is ignored and will be removed in a future m" +
"ajor version. To drop logs, use SetBeforeSendLog and return null.")]
public bool EnableLogs { get; set; }
public NLog.Layouts.Layout? Environment { get; set; }
public int FlushTimeoutSeconds { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,8 @@ namespace Sentry
public string? Distribution { get; set; }
public string? Dsn { get; set; }
public bool EnableBackpressureHandling { get; set; }
[System.Obsolete("Logs are always enabled. This option is ignored and will be removed in a future m" +
"ajor version. To drop logs, use SetBeforeSendLog and return null.")]
public bool EnableLogs { get; set; }
[System.Obsolete("Metrics are always enabled. This option is ignored and will be removed in version" +
" 7.0.0. To drop metrics, use SetBeforeSendMetric and return null.")]
Expand Down
Loading