Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/bin/log_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def setup_logging(log_name):
:return: logger object
"""
# Make path till log file
log_file = make_splunkhome_path(["var", "log", APP_NAME, "%s.log" % log_name])
log_file = make_splunkhome_path(["var", "log", "splunk", APP_NAME, "%s.log" % log_name])
# Get directory in which log file is present
log_dir = os.path.dirname(log_file)
# Create directory at the required path to store log file, if not found
Expand Down