- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
splunk custom command python sdk set level for logging
spammenot66
Contributor
04-25-2019
04:39 AM
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
Set level of logger source. Use debug for development time options, then bump it up
to logging.INFO after your script is working well to avoid excessive logging.
logger.setLevel(logging.INFO)
