Hello,
I'm trying to enable debug mode for Data Loading Tools to investigate some strange behavior related to the formatting of the data mapping workbooks, but I'm not able to find a solution. I'm using ArcGIS Pro 3.2 and Data Loading Tools are now part of the standard ArcToolbox tools.
In ArcGIS Pro 3.0 there was an option to enable debug level log messages using:
import dltsolutions
dltsolutions.logger.setLevel("DEBUG")
Is this still possible?
Solved! Go to Solution.
You can still enable it, enter the following:
import logging
logging.getLogger("dataloading").setLevel('DEBUG')
You can still enable it, enter the following:
import logging
logging.getLogger("dataloading").setLevel('DEBUG')
Thank you! I did not know I can access the logs from here.