|
ErrorModuleLogger Property
|
Namespace: GSF.ErrorManagementAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.275-beta+5a507085c1b79f1427cd1812b9c3c9c583c21079
Syntax
RemarksLogger 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