IEtlTask.Log

Syntax

Log: ILog;

Description

The Log property determines a log, to which all system messages tracing ETL task progress are written.

Example

Sub UserProc;
Var
    MB: IMetabase;
    EtlTask: IEtlTask;
    Log: ILog;
Begin
    MB := MetabaseClass.Active;
    EtlTask := MB.ItemById("ETL").Bind As IEtlTask;
    Log := EtlTask.Log;
End Sub UserProc;

After executing the example the Log variable contains a log of ETL task. The repository object has the ETL identifier.

See also:

IEtlTask