ArcGIS Runtime SDK for iOS
100.15
|
Networking related configuration of resources useful for debugging.
This category contains networking related configuration that can be helpful to debug network traffic. You can change the configuration of any resource individually by specifying it using AGSRemoteResource::requestConfiguration
, or you can change it for all resources using #setGlobalConfiguration:
. Certain sensitive information including tokens, user names, and passwords are masked in the log file.
Properties | |
BOOL | debugLogDeleteBeforeEachRun |
NSURL * | debugLogFileURL |
BOOL | debugLogIgnoreTiledLayerRequests |
BOOL | debugLogIncludeRequestHeaders |
BOOL | debugLogIncludeResponseHeaders |
BOOL | debugLogIncludeTimestamp |
BOOL | debugLogRequests |
BOOL | debugLogResponses |
NSUInteger | debugLogResponseTrimThreshold |
|
readwritenonatomicassign |
Indicates whether to delete existing log file before logging begins.
AGSRequestConfiguration::debugLogFileURL
, if any. Extends class AGSRequestConfiguration.
|
readwritenonatomicstrong |
Full path to the debug file location, including file name with extension. This property identifies the file when debug messages are logged for requests and responses. The default value is nil
. If this property is nil
and logging is turned on, the logs are written to the debug console instead of to a file.
If the file exists when the application starts, it may be deleted or appended to depending on the setting of the property AGSRequestConfiguration::debugLogDeleteBeforeEachRun
. If the file does not exist when the application starts, it will be created. The file can grow large quickly, so do not leave logging on for longer than necessary, and remove the file when it is no longer needed.
The file is written in Markdown format for easy visual parsing in a markdown previewing application, so the file name extension ".md" is recommended. Certain sensitive information including tokens, user names, and passwords are masked in the log file.
nil
. Extends class AGSRequestConfiguration.
|
readwritenonatomicassign |
Indicates whether to log tiled layer requests after the layer is loaded.
Extends class AGSRequestConfiguration.
|
readwritenonatomicassign |
Indicates whether to log request headers with requests.
AGSRequestConfiguration::debugLogRequests
is true. Extends class AGSRequestConfiguration.
|
readwritenonatomicassign |
Indicates whether to log response headers with responses.
AGSRequestConfiguration::debugLogResponses
is true. Extends class AGSRequestConfiguration.
|
readwritenonatomicassign |
Indicates whether to include time stamps with log entries when logging to a file.
Extends class AGSRequestConfiguration.
|
readwritenonatomicassign |
Indicates whether to log requests.
Extends class AGSRequestConfiguration.
|
readwritenonatomicassign |
Indicates whether to log responses.
Extends class AGSRequestConfiguration.
|
readwritenonatomicassign |
Maximum number of characters to log for each response string.
Extends class AGSRequestConfiguration.