サマリー
Determines whether history logging is active.
説明
To enable history logging, use the SetLogHistory function.
構文
GetLogHistory ()
データ タイプ | 説明 |
Boolean | Returns whether geoprocessing logging history is enabled. |
コードのサンプル
Disable history logging, if enabled.
import arcpy
if arcpy.GetLogHistory():
arcpy.SetLogHistory(False)