Splunk Dev

After adding logging statements into Python script and running it via Splunk CLI, why are there no log messages in python.log?

ConnorG
Path Finder

I'm trying to debug a Python script and in doing so placed some logging statements into the script.

Following these posts for the basics:
Logging from Python in Splunk
Python logging in splunk

I'm going off the simple statement here
"You can also just call logging directly and your logs will appear in python.log:"

 logging.warning("Something bad happened: %s", "out of memory")

so my code looks just like

import logging
logging.info("message here")

Running it using the Splunk CLI command:

 splunk cmd python ./confcheck_correlation_searches.py

And yet still nothing in python.log. Any ideas what I'm missing here?

jkat54
SplunkTrust
SplunkTrust

The first link you showed has the answer wrapped up in a function. Here it is without being wrapped into a function:

# create logger object for logging - see https://docs.python.org/2/howto/logging.html for details
import logging
logger = logging.getLogger('confcheck_correlation_searches.py')
logger.setLevel(logging.DEBUG)
fh = logging.FileHandler('/var/log/splunk/confcheck_correlation_searches.log')
fh.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s | src="%(name)s" | lvl="%(levelname)s" | msg="%(message)s"')
fh.setFormatter(formatter)
logger.addHandler(fh)

Note, you may wish to change the formatter... i just grabbed the first example I had.

ConnorG
Path Finder

Yes I noticed this, but if you read further down it also states that

"You can also just call logging directly and your logs will appear in python.log"

As I followed in my example.

0 Karma
Get Updates on the Splunk Community!

Cultivate Your Career Growth with Fresh Splunk Training

Growth doesn’t just happen—it’s nurtured. Like tending a garden, developing your Splunk skills takes the right ...

Introducing a Smarter Way to Discover Apps on Splunkbase

We’re excited to announce the launch of a foundational enhancement to Splunkbase: App Tiering.  Because we’ve ...

How to Send Splunk Observability Alerts to Webex teams in Minutes

As a Developer Evangelist at Splunk, my team and I are constantly tinkering with technology to explore its ...