Skip to content

Commit

Permalink
pci_device: make subprocess logging a debugging message and not error
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Adler <[email protected]>
  • Loading branch information
michael-adler committed Dec 19, 2024
1 parent fef8448 commit 7354715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/opae.admin/opae/admin/utils/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def call_process(cmd, no_dry=False):
print(cmd)
return '0x0' if 'setpci' in cmd else ''

LOG('process').error('Calling %s', cmd)
LOG('process').debug('Calling %s', cmd)
try:
output = subprocess.check_output(cmd.split(),
stderr=subprocess.STDOUT)
Expand Down

0 comments on commit 7354715

Please sign in to comment.