GetMaxSeverity

摘要

用于获取从之前运行的工具返回的最大严重性。

语法

GetMaxSeverity ()
返回值
数据类型说明
Integer

返回的严重性。

  • 0该工具既未返回警告,也未返回错误消息。
  • 1该工具返回了警告消息,但未返回错误消息。
  • 2该工具返回了错误消息。

代码示例

GetMaxSeverity 示例

根据之前运行的工具的最大严重性显示自定义消息。

import arcpy

# Set current workspace
arcpy.env.workspace = "c:/data/mydata.gdb"

try:
    arcpy.analysis.Clip("Roads", "County", "Roads_Clip")
except arcpy.ExecuteError:
    pass

severity = arcpy.GetMaxSeverity()

if severity == 2:
    # If the tool returned an error
    print(f"Error returned \n{arcpy.GetMessages(2)}")
elif severity == 1:
    # If the tool returned no errors, but returned a warning
    print(f"Warning returned \n{arcpy.GetMessages(1)}")
else:
    # If the tool did not return an error or a warning
    print(arcpy.GetMessages())

相关主题


在本主题中