Languages

Menu
Sites
Language
Reading logs

Hi,

Could you tell a resource where​ I​ can learn to read logs from

​Tizen device. In particular, I have to deal with the behavior of API Audio or Sound during pause application (screen is off)?
 
 For example - if you will answer for this question- I attached the log
 
Thanks
View Selected Answer

Responses

4 Replies
Yasin Ali
Kilim A

Thank you for your answer

Are this links  applied  to web programming ( dlog reading)?

Marco Buettner

You can filter on the log-view of the Tizen Studio/SDK

To filter console messages from web application use as Tag "ConsoleMessage" and dont forget to setup select D from the different states button of the log-view

Mark as answer
Safwan

In web application you may use javascript console log. It's easy to implement.

var x = 5;
console.log("Value of X is:" + x);
x=x+2;
console.log("Value of X is now:" + x);

Instead of 'Run as' use 'Debug As> Tizen Web Application' to see the 'console log' on Console window of Tizen Studio.

May also check this link: https://developer.tizen.org/development/tools/web-tools/javascript-log-console-view