I'm printing the messages on console in qmomentics ide.
console.log("Simple string message");
Then this message is displaying on the device log console.
Now i'm trying to concatenate the other datatypes to the message and printing those messages on the device console. Then that message is not displaying on the console.
property bool finished: false
console.log("String message concatenated with bool value" +finished);
Please tell me how print messages which are concatenated with other datatypes.