From 43e6d31b7021564f665e2048849aad7a7fd8209e Mon Sep 17 00:00:00 2001 From: Kristof Szabados <Kristof.Szabados@ericsson.com> Date: Mon, 13 May 2019 16:01:07 +0200 Subject: [PATCH] fixed typo. Signed-off-by: Kristof Szabados <Kristof.Szabados@ericsson.com> --- usrguide/java_referenceguide/13-tips_&_troubleshooting.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usrguide/java_referenceguide/13-tips_&_troubleshooting.adoc b/usrguide/java_referenceguide/13-tips_&_troubleshooting.adoc index fa6366bb8..a95a45c84 100644 --- a/usrguide/java_referenceguide/13-tips_&_troubleshooting.adoc +++ b/usrguide/java_referenceguide/13-tips_&_troubleshooting.adoc @@ -135,7 +135,7 @@ Here is an example, which logs an integer value: [source] ---- int myVar = 5; -TTCN_Logger.log(Severity.WARNING_UNQUALIFIED, ''myVar = %d'', myVar);; +TTCN_Logger.log(Severity.WARNING_UNQUALIFIED, "myVar = %d", myVar);; ---- Sometimes the string to be logged is static. In such cases there is no need for `printf`-style argument processing, which may introduce extra risks if the string contains the character `%`. The logger class offers a function for logging a static (or previously assembled) string: -- GitLab