This method allows IIS or custom applications to log user-defined data to the IIS log. If your custom logging module supports the ILogPluginEx interface, IIS will call ILogPluginEx::LogCustomInformation for certain types of logging events.
HRESULT STDMETHODCALLTYPE LogCustomInformation(
DWORD cCount,
PCUSTOM_LOG_DATA pCustomLogData,
LPSTR szHeaderSuffix
);
This method can also be used by your own applications, an alternative to the ILogPlugin interface.
Note With IIS version 5.0, IIS will only call the ILogPluginEx interface to log CPU accounting and throttling information. IIS uses ILogPlugin::LogInformation for all other loggable events, regardless of whether the active logging module is custom or not.