GetLogHistory

Zusammenfassung

Determines whether history logging is active.

Diskussion

To enable history logging, use the SetLogHistory function.

Syntax

GetLogHistory ()
Rückgabewert
DatentypErläuterung
Boolean

Returns whether geoprocessing logging history is enabled.

Codebeispiel

GetLogHistory example

Disable history logging, if enabled.

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

Verwandte Themen