ApexSQL.Log.Api Send comments on this topic.
ConfigureLogging Method
See Also 



configuration
Configuration object
Sets the logging configuration for the engine.

Syntax

Visual Basic (Declaration) 
Public Shared Sub ConfigureLogging( _
   ByVal configuration As Config.LoggingConfiguration _
) 
Visual Basic (Usage)Copy Code
Dim configuration As Config.LoggingConfiguration
 
Config.ConfigureLogging(configuration)
C# 
public static void ConfigureLogging( 
   Config.LoggingConfiguration configuration
)
C++/CLI 
public:
static void ConfigureLogging( 
   Config.LoggingConfiguration^ configuration
) 

Parameters

configuration
Configuration object

Example

Remarks

This configuration should be set up before Engine static class is referenced as it will automatically come into affect at that time. Once ApexSQL Log API engine has been initialized any calls to this method will raise an exception.

See Also