Skip to content

Commit

Permalink
Pass correct args to logger
Browse files Browse the repository at this point in the history
Co-authored-by: Iuri Chaer <iuri.chaer@gmail.com>
  • Loading branch information
maszyk99 and ichaer committed Mar 7, 2024
1 parent 9053482 commit 1d1cc20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion splunklib/searchcommands/external_search_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def _execute(path, argv=None, environ=None):
raise ValueError(f'Cannot find command on path: {path}')

path = found
logger.debug(f'starting command="{path}", arguments={path}')
logger.debug(f'starting command="{path}", arguments={argv}')

def terminate(signal_number):
sys.exit(f'External search command is terminating on receipt of signal={signal_number}.')
Expand Down

0 comments on commit 1d1cc20

Please sign in to comment.