NET Logging Library
LogException(Exception) Method
Example 



KellermanSoftware.NetLoggingLibrary Namespace > ConcreteLog Class > LogException Method : LogException(Exception) Method
Log an exception
Syntax
Public Overloads Function LogException( _
   ByVal ex As Exception _
) As LogResponse
Dim instance As ConcreteLog
Dim ex As Exception
Dim value As LogResponse
 
value = instance.LogException(ex)
public LogResponse LogException( 
   Exception ex
)
public:
LogResponse^ LogException( 
   Exception^ ex
) 

Parameters

ex
Example
ConcreteLog logger = new ConcreteLog();
 
//Licensed Mode
//logger.UserName = "User Name From Receipt";
//logger.LicenseKey = "LicenseKey From Receipt";            
 
//Clear all configuration
logger.ResetConfiguration();
 
//Add a new target, you can also define targets in an xml file, app.config, or web.config
FileTarget fileTarget = new FileTarget(Environment.CurrentDirectory + "\\fileLogger.txt");
logger.Config.Targets.Add(fileTarget);
 
string message = "This is a test";
NotSupportedException exception = new NotSupportedException(message);
logger.LogException(exception);
Dim logger As New ConcreteLog()
 
'Licensed Mode
'logger.UserName = "User Name From Receipt";
'logger.LicenseKey = "LicenseKey From Receipt";            
 
'Clear all configuration
logger.ResetConfiguration()
 
'Add a new target, you can also define targets in an xml file, app.config, or web.config
Dim fileTarget As New FileTarget(Environment.CurrentDirectory & "\fileLogger.txt")
logger.Config.Targets.Add(fileTarget)
 
Dim message As String = "This is a test"
Dim exception As New NotSupportedException(message)
logger.LogException(exception)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ConcreteLog Class
ConcreteLog Members
Overload List