|
LoggerSwallowException Method
|
Logs that a first chance exception was intentionally not handled for the provided reason.
In the LogFileViewer it will filter messages differently if it was indicated that they were swallowed.
Namespace: GSF.DiagnosticsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax static member SwallowException :
ex : Exception *
?message : string *
?details : string *
?additionalFlags : MessageFlags
(* Defaults:
let _message = defaultArg message null
let _details = defaultArg details null
let _additionalFlags = defaultArg additionalFlags MessageFlags.None
*)
-> unit
GSF.Diagnostics.Logger.SwallowException = function(ex, message, details, additionalFlags);
View SourceParameters
- ex Exception
- the exception that was swallowed
- message String (Optional)
- message to include, such as a reason why it was swallowed.
- details String (Optional)
- additional details.
- additionalFlags MessageFlags (Optional)
- additional flags that can be set with this swallowed exception.
See Also