aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2020-11-25 23:32:27 +0000
committerNeels Hofmeyr <neels@hofmeyr.de>2021-06-01 05:28:59 +0200
commit68214aadd6129b79a46c695e3836f833139cfc3b (patch)
tree50849bc432b854c401c6e16de171184361298873
parent99b837ad09b94df531e7090cc6ebec0503001f9d (diff)
log vty commands
-rw-r--r--library/Osmocom_VTY_Functions.ttcn1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/Osmocom_VTY_Functions.ttcn b/library/Osmocom_VTY_Functions.ttcn
index 49f587d5..0d42a8e9 100644
--- a/library/Osmocom_VTY_Functions.ttcn
+++ b/library/Osmocom_VTY_Functions.ttcn
@@ -100,6 +100,7 @@ module Osmocom_VTY_Functions {
/* send a VTY command and obtain response until prompt is received */
function f_vty_transceive_ret(TELNETasp_PT pt, charstring tx, boolean strict := true) return charstring {
+ log("VTY: ", tx);
pt.send(tx);
return f_vty_wait_for_prompt(pt, strict, tx);
}