Index: trunk/t3q-examples/checkLogFormat/checkLogFormat.ttcn3
===================================================================
--- trunk/t3q-examples/checkLogFormat/checkLogFormat.ttcn3	(revision 39)
+++ trunk/t3q-examples/checkLogFormat/checkLogFormat.ttcn3	(revision 55)
@@ -6,4 +6,18 @@
         //incorrect
         log ( "***" )
+        
+        test();
+        //correct
+        log("*** f_1: INFO: OK - random value = " & bit2str(v_random) & " ***");
+        
+        test();
+        //correct - function calls are ignored
+        log("*** f_1: " & getMyStatus() & "INFO: OK - random value = " & bit2str(v_random) & " ***");
+        
+        test();
+        //incorrect - charstring function call parameters are taken into consideration resulting in
+        //an incorrect log statement format
+        log("*** f_1: " & getMyStatus("1") & "INFO: OK - random value = " & bit2str(v_random) & " ***");
+        
     }
 
