From 68214aadd6129b79a46c695e3836f833139cfc3b Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Wed, 25 Nov 2020 23:32:27 +0000 Subject: [PATCH] log vty commands Change-Id: I25ddeaf8d859f98b4f11ba27310b8eef034a09f2 --- library/Osmocom_VTY_Functions.ttcn | 1 + 1 file changed, 1 insertion(+) diff --git a/library/Osmocom_VTY_Functions.ttcn b/library/Osmocom_VTY_Functions.ttcn index 49f587d56..0d42a8e95 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); }