LogLogException Method (Exception, String, Object) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Logs an exception with an accompanying string message describing the current exception.
Namespace:
Telogis.GeoBase.Diagnostics
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public static void LogException(
Exception ex,
string message,
params Object[] formatArgs
)
Public Shared Sub LogException (
ex As Exception,
message As String,
ParamArray formatArgs As Object()
)
Parameters
- ex
- Type: SystemException
The error that occurred during application execution. - message
- Type: SystemString
The message that describes the error. - formatArgs
- Type: SystemObject
Parameters to include in the message.
Examples ...
catch (Exception ex)
{
Log.LogException(ex, "Exception_Message {0}", 1234);
}
...
See Also