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