Summary
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.
Discussion
Note:
This function does not take into account how the Additional Information Messages options have been set.
Syntax
SetMessageLevels (levels)
Parameter | Explanation | Data Type |
levels [levels,...] | Specifies the categories of messages that will be included in geoprocessing tool messages.
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 |
Code sample
Use SetMessageLevels to return syntax messages with geoprocessing tool messages.
import arcpy
arcpy.SetMessageLevels(['COMMANDSYNTAX'])