Log Method

Summary
Logs the specified entry.
Syntax
C#
VB
C++
public void Log( 
   ILogEntry entry 
) 
  
Public Sub Log( _ 
   ByVal entry As ILogEntry _ 
)  
public: 
void Log(  
   ILogEntry^ entry 
)  

Parameters

entry
The entry to log.

Example

Log an entry using LogEntry.

C#
VB
using Leadtools; 
using Leadtools.Logging; 
using Leadtools.Logging.LoggingChannel; 
 
 
 
// 
// The log should already be configured with the correct logging channels. 
// 
 
private void Log(Logger log) 
{ 
   LogEntry entry = new LogEntry(); 
 
   entry.LogType = LogType.Information; 
   entry.Message = "This is an information message"; 
   entry.CustomInformation.Add("Custom", "My Custom Information"); 
   entry.Source = "TestSource"; 
   log.Log(entry); 
} 
Imports Leadtools 
Imports Leadtools.Logging 
Imports Leadtools.Logging.LoggingChannel 
 
 
' 
' The log should already be configured with the correct logging channels. 
' 
Public Sub Log() 
   Dim logger As Logger = New Logger() 
   Dim entry As LogEntry = New LogEntry() 
 
   entry.LogType = LogType.Information 
   entry.Message = "This is an information message" 
   entry.CustomInformation.Add("Custom", "My Custom Information") 
   entry.Source = "TestSource" 
   logger.Log(entry) 
End Sub 
Requirements

Target Platforms

See Also

Reference

Logger Class

Logger Members

Help Version 21.0.2021.6.30
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Logging Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.