Skip to content
Snippets Groups Projects
Commit 43e6d31b authored by Kristof Szabados's avatar Kristof Szabados
Browse files

fixed typo.


Signed-off-by: default avatarKristof Szabados <Kristof.Szabados@ericsson.com>
parent 69e69dd6
No related branches found
No related tags found
No related merge requests found
...@@ -135,7 +135,7 @@ Here is an example, which logs an integer value: ...@@ -135,7 +135,7 @@ Here is an example, which logs an integer value:
[source] [source]
---- ----
int myVar = 5; 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: 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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment