GetSeverity

摘要

按索引获取指定消息的严重性代码(0、1 和 2)。

语法

GetSeverity (index)
参数说明数据类型
index

堆栈中消息的数值索引位置。

Integer
返回值
数据类型说明
Integer

消息的严重性代码:

  • 0消息
  • 1警告
  • 2错误

代码示例

GetSeverity 示例

返回各个地理处理工具消息的严重性代码和消息。

import arcpy
in_featureclass = arcpy.GetParameterAsText(0)
out_featureclass = arcpy.GetParameterAsText(1)
# Run the CopyFeatures tool. If it fails, print out the
# severity and message for each message.
try:
    arcpy.CopyFeatures_management(in_featureclass, out_featureclass)
except arcpy.ExecuteError:
    for i in xrange(0, arcpy.GetMessageCount()):
        print('{0}: {1}'.format(arcpy.GetSeverity(i),
                                arcpy.GetMessage(i)))

相关主题


在本主题中