msuraev submitted this change.

View Change

Approvals: osmith: Looks good to me, but someone else must approve pespin: Looks good to me, but someone else must approve msuraev: Looks good to me, approved Jenkins Builder: Verified
scripts/obs/*.py: log name of function calling command

Change-Id: If4ccc0eb44da4ea743f3858b09c762ee6a138f1d
---
M scripts/obs/lib/__init__.py
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scripts/obs/lib/__init__.py b/scripts/obs/lib/__init__.py
index a07a072..d66aa3b 100644
--- a/scripts/obs/lib/__init__.py
+++ b/scripts/obs/lib/__init__.py
@@ -7,6 +7,7 @@
import subprocess
import sys
import tempfile
+import inspect
import lib.config

cmds_verbose = False
@@ -108,8 +109,9 @@
:param check: stop with error if exit code is not 0 """
global cmds_verbose

+ caller = inspect.stack()[2][3]
if cmds_verbose:
- print(f"+ {cmd}")
+ print(f"+ {caller}(): {cmd}")

with tempfile.TemporaryFile(encoding="utf8", mode="w+") as output_buf:
p = subprocess.Popen(cmd, stdout=subprocess.PIPE,

To view, visit change 29426. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: If4ccc0eb44da4ea743f3858b09c762ee6a138f1d
Gerrit-Change-Number: 29426
Gerrit-PatchSet: 2
Gerrit-Owner: msuraev <msuraev@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: msuraev <msuraev@sysmocom.de>
Gerrit-Reviewer: osmith <osmith@sysmocom.de>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>
Gerrit-MessageType: merged