GetLogHistory

La documentación de ArcGIS 2.8 se ha archivadod y ha dejado de actualizarse. El contenido y los enlaces pueden estar obsoletos. Consulte la documentación más reciente.

Resumen

Determines whether history logging is active.

Debate

To enable history logging, use the SetLogHistory function.

Sintaxis

GetLogHistory ()
Valor de retorno
Tipo de datosExplicación
Boolean

Returns whether geoprocessing logging history is enabled.

Muestra de código

GetLogHistory example

Disable history logging, if enabled.

import arcpy
if arcpy.GetLogHistory():
    arcpy.SetLogHistory(False)

Temas relacionados