サマリー
Determines whether geoprocessing operations are written to dataset metadata.
説明
To enable the update of dataset metadata, use the SetLogMetadata function.
構文
GetLogMetadata ()
| データ タイプ | 説明 | 
| Boolean | Returns whether geoprocessing operations are written to dataset metadata. | 
コードのサンプル
Disable the update of dataset metadata, if enabled.
import arcpy
if arcpy.GetLogMetadata():
    arcpy.SetLogMetadata(False)