how do i set the logging level if i use the splunk.minining.dcutils? Is it possible to do it from within the python script or is it done in some config file?
import splunk.mining.dcutils as dcu
logger = dcu.getLogger()
The Root-level logger has this method avail
import logging
logger = logging.getLogger() # Root-level logger
logger.setLevel(logging.INFO)