Log Method

Summary
Logs the specified entry.
Syntax
C#
C++/CLI
public void Log( 
   ILogEntry entry 
) 
public: 
void Log(  
   ILogEntry^ entry 
)  

Parameters

entry
The entry to log.

Example

Log an entry using LogEntry.

C#
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); 
} 
Requirements

Target Platforms

See Also

Reference

Logger Class

Logger Members

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

Leadtools.Logging Assembly

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