Skip to content

Commit

Permalink
Log improvement.
Browse files Browse the repository at this point in the history
  • Loading branch information
VatsalJagani committed Apr 9, 2024
1 parent 326054d commit 901c1cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utilities/splunk_sdk_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ def implement_utility(self):

if already_exist:
utils.info(
"splunklib already present under bin directory of the App, upgrading...")
f"splunklib already present under {folder_to_install_splunklib} directory of the App, upgrading...")
utils.execute_system_command(
f'pip install splunk-sdk --upgrade --target "{folder_to_install_splunklib}"')
else:
utils.info(
"splunklib not present under bin directory of the App, installing...")
f"splunklib not present under {folder_to_install_splunklib} directory of the App, installing...")
utils.execute_system_command(
f'pip install splunk-sdk --target "{folder_to_install_splunklib}"')

Expand Down

0 comments on commit 901c1cf

Please sign in to comment.