SetLogHistory (arcpy)

Summary

For script tools and stand-alone scripts (scripts run outside of an ArcGIS application), you can enable or disable history logging using the SetLogHistory function.

The history log file is an Extensible Markup Language (XML) file that contains information about each geoprocessing operation. The information contained in the log file is essentially the same as that found in the Results window.

Syntax

SetLogHistory (log_history)
ParameterExplanationData Type
log_history

True, to enable geoprocessing logging history and False, to disable.

Boolean

Code Sample

SetLogHistory example

Turn off geoprocessing log history.

import arcpy
arcpy.SetLogHistory(False)

Related Topics

6/21/2013