aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2020-11-25 23:32:27 +0000
committerNeels Hofmeyr <neels@hofmeyr.de>2021-07-14 23:52:50 +0200
commita632966d84cac012f411d6b6dec96c80c24d4339 (patch)
treef39708ff278ceeee64ec103fc4b04eef69380298
parent0953bf82ba7345d526205627d13e4b20c58c745e (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);
}