Share via


PooledTxPipeline.SetLogFile

Ee798804.c++_on(en-US,CS.10).gifEe798804.vb_off(en-US,CS.10).gif

Use this method to identify the file in which to log the operations of the pipeline component.

Ee798804.note(en-US,CS.10).gifNote

  • This method is for use by developers who want to analyze pipeline configuration file information. Logging should never be enabled in a production environment: it degrades performance and could compromise the security of credit card numbers in non-set transactions. File systems must be configured to allow the process running the pipeline to have write access to the specified path.

Definition

Sub SetLogFile(pszFileName As String)

Parameters

pszFileName

A String containing the name of the file in which to log events.

Return Values

None.

Error Values

This method sets the Number property of the global Err object to S_OK (&H00000000) to indicate success and to standard COM error values to indicate failure. For more information about standard COM errors, see Standard COM Errors. Additional information may be available using the global Err object. In particular, the Description property may contain a text description of the error.

Remarks

When logging is set, the pipeline logs the pipeline components that are called and the error values each component returns. The pipeline also logs all Dictionary and SimpleList object read and write operations.

The SetLogFile methodshould be called immediately before executing a pipeline.

Calling this method with an empty string turns off logging.

For more information about memory ownership issues related to COM property and method parameters, see Managing COM Parameter Memory.

Example

' pPooledTxPipeline is a Commerce.PooledTxPipeline object

errVal = pPooledTxPipeline.SetLogFile("CustomShipping.log")

See Also

PooledTxPipeline Object

PooledTxPipeline.Execute

PooledTxPipeline.LoadPipe


All rights reserved.