|
ErrorModuleLogger Property
|
Namespace: GSF.ErrorManagementAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.218-beta+101eee949414e414795e55a6e73d88938f0177b8
Syntax Remarks Logger property can be used for logging handled exception throughout the web application.
Example
This example shows the use of
Logger for logging handled exception:
using System;
using GSF.ErrorManagement;
namespace WebApp
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
try
{
string s = null;
s.ToCharArray();
}
catch (Exception ex)
{
ErrorModule.Logger.Log(ex);
}
}
}
}
See Also