ILoggingServiceGetExtensionLogger Method  | 
 
            Gets an object which can be used for logging by an extension.
            
 
    Namespace: 
   Dundas.BI
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
SyntaxIExtensionLogger GetExtensionLogger(
	Guid packageId
)
Function GetExtensionLogger ( 
	packageId As Guid
) As IExtensionLogger
IExtensionLogger^ GetExtensionLogger(
	Guid packageId
)
abstract GetExtensionLogger : 
        packageId : Guid -> IExtensionLogger 
Parameters
- packageId
 - Type: SystemGuid
The ID of the extension package. 
Return Value
Type: 
IExtensionLoggerAn object which can be used for logging by an extension.
Remarks
            It is recommended that extensions use this method for logging operations rather
            than the 
ILoggingService methods, in order to get correct and consistent
            log channel names.
            
See Also