Skip to main content

SetMessageLevels

サマリー

Sets additional categories of informative messages to be returned with geoprocessing tool messages.

Geoprocessing messages can be accessed with several ArcPy functions including GetMessages and GetAllMessages.

ディスカッション

注意:

This function does not take into account how the Additional information messages options have been set.

構文

SetMessageLevels(levels)

パラメーター 説明 データ タイプ

levels

Specifies the categories of messages that will be included in geoprocessing tool messages.

  • NORMAL—Only standard tool messages will be included. This is the default.Standard tool messages will be always be included. Use this option to reset back to the default, if other options have been previously set.

  • COMMANDSYNTAX—The tool messages will include a command syntax message. Command syntax is not Python code. It's a space-delimited string of the tool name and the parameter values used to run the tool.

  • DIAGNOSTICS—The tool messages will include diagnostic messages. The messages include details about geoprocessing preprocessing and postprocessing, geoprocessing thread disconnecting and reconnecting, and more. Diagnostic messages are the same as the geoprocessing event messages logged in the ArcGIS Pro Diagnostic Monitor. Esri staff uses diagnostic messages to troubleshoot geoprocessing tool issues.

  • PROJECTIONTRANSFORMATION—The tool messages will include geographic transformation-related messages. These messages are applicable when a tool requires transforming input datasets to a different coordinate system.

Multiple options can be set using a list. A single option can be set as a string or a list.

The default value is NORMAL.

String

コードのサンプル

SetMessageLevels example

Use SetMessageLevels to return syntax messages with geoprocessing tool messages.

import arcpy

arcpy.SetMessageLevels(['COMMANDSYNTAX'])