GetLogMetadata

Synthèse

Controls whether geoprocessing operations are written to dataset metadata.

Discussion

To enable the update of dataset metadata, use the SetLogMetadata function or the LogMetadata class.

Syntaxe

GetLogMetadata ()
Valeur renvoyée
Type de donnéesExplication
Boolean

Returns whether geoprocessing operations are written to dataset metadata.

Exemple de code

GetLogMetadata example

Disable the update of dataset metadata if enabled.

import arcpy
if arcpy.GetLogMetadata():
    arcpy.SetLogMetadata(False)