Resumen
Determines whether history logging is active.
Debate
To enable history logging, use the SetLogHistory function.
Sintaxis
GetLogHistory ()
| Tipo de datos | Explicación | 
| Boolean | Returns whether geoprocessing logging history is enabled. | 
Muestra de código
Disable history logging, if enabled.
import arcpy
if arcpy.GetLogHistory():
    arcpy.SetLogHistory(False)