|
Log Object |
|
See Also: |
The Log.Append property sets/returns whether or not content will be appended to the end of the log file.
VBScript:
JScript:
| Log | The Log object. |
| boolVal | True (Default): If the log file already exists, add new content to the end of the file. False: Overwrite any existing file. |
Provides the same functionality for the log file as Output.Append provides for the output file. See the Output.Append topic for more information.
As with Output.Append, setting Log.Append to True is particularly useful when more than one script or application are writing to the same file. When Log.Append is True, APGen seeks to the end of the log stream before every log write. If several APG scripts use the same Log.Path, leaving Log.Append True ensures that the scripts don't overwrite each others' log entries.