Skip to main content

GetLogHistory

Summary

Determines whether history logging is active.

Discussion

To enable history logging, use the SetLogHistory function.

To limit the duration of history logging, use the LogHistory class as a context manager or decorator.

Syntax

GetLogHistory()

Return value

Data Type Explanation

Boolean

Returns whether geoprocessing logging history is enabled.

Code sample

GetLogHistory example

Disable history logging, if enabled.

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