fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/28222 )
Change subject: library/StatsD_Checker: make logging messages more readable
......................................................................
library/StatsD_Checker: make logging messages more readable
Change-Id: I0484f36184fe3724c57cedcf203894d701b91605
---
M library/StatsD_Checker.ttcn
1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/22/28222/1
diff --git a/library/StatsD_Checker.ttcn b/library/StatsD_Checker.ttcn
index 1c8fd12..8ace150 100644
--- a/library/StatsD_Checker.ttcn
+++ b/library/StatsD_Checker.ttcn
@@ -153,14 +153,14 @@
continue;
}
if (not f_compare_expect(metric, exp.expect)) {
- log("EXP mismatch: ", metric, exp.expect);
+ log("EXP mismatch: ", metric, " vs ", exp.expect);
result := {
kind := e_Mismatched,
idx := i
};
break;
} else {
- log("EXP match: ", metric, exp.expect);
+ log("EXP match: ", metric, " vs ", exp.expect);
result := {
kind := e_Matched,
idx := i
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/28222
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I0484f36184fe3724c57cedcf203894d701b91605
Gerrit-Change-Number: 28222
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange