|
ErrorModuleLogger Property
|
Namespace: GSF.ErrorManagementAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
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