Log: ILog;
The Log property determines a log, to which all system messages tracing ETL task progress are written.
Sub Main;
Var
MB: IMetabase;
EtlTask: IEtlTask;
Log: ILog;
Begin
MB:=MetabaseClass.Active;
EtlTask:=MB.ItemById("ETL").Bind As IEtlTask;
Log:=EtlTask.Log;
End Sub Main;
After executing the example the Log variable contains a log of ETL task. The repository object has the ETL identifier.
See also: