Skip to main content

GetMessages

Resumen

Returns the geoprocessing messages from a tool by a specified severity level.

Sintaxis

GetMessages({severity})

El parámetro Explicación Tipo de datos

severity

Specifies the type of messages to be returned.

  • 0—Informative, warning, and error messages are returned.

  • 1—Only warning messages are returned.

  • 2—Only error messages are returned.

Not specifying a severity level will return all types of messages.

The default value is 0.

Integer

Valor de retorno

Tipo de datos Explicación

String

The geoprocessing tool messages, separated by a newline ('\n').

Muestra de código

GetMessages example

Returns the geoprocessing messages.

import arcpy

fc = arcpy.GetParameterAsText(0)
arcpy.management.GetCount(fc)

# Print all of the geoprocessing messages returned by the
#  last tool (GetCount)
print(arcpy.GetMessages())