sampsa
sampsa

Reputation: 11

console.log not work in Samsung Tizen TV Emulator (web app)

I am trying to debug my web app with Tizen IDE + Emulator, but console does not work. When I run my app with the 'Debug as...' option it launches the app and the inspector opens correctly but the console tab is empty and I cannot run any JavaScript command in the console (as suggested here https://stackoverflow.com/a/37845599/3199735). Console output in the IDE is also empty. I tested this with the Basic TV app template, so there is no JavaScript code which disables console. I also tested the 'sdb dlog' command, but it just gives me an error.

I'm using the latest SDK and IDE.

Mac OSX 10.11.6 Tizen SDK

Version : 2.4.0_Rev8

You can find same posts with screenshots from Samsung's forums

Upvotes: 1

Views: 3085

Answers (2)

RzR
RzR

Reputation: 3176

One workaround would be to create your own logger area in your app and list what is printed using a custom log function :\

Upvotes: 0

Md. Armaan-Ul-Islam
Md. Armaan-Ul-Islam

Reputation: 2184

Samsung Tizen TV SDK provides Web Inspector as debugging tool. Google chrome is required to be installed to perform such debug Operation. You can check the functionalities provided in this document.

a) Run the tizen project using Debug As-> Tizen Web Application. When you will debug the project on emulator, the Web Inspector (Debugging tool for Tizen SDK) will open in a separate window.

b) Go to the Source tab and enable Debugging :

enter image description here

c) You can also set breakpoints and debug stepping into line of codes. Click on the bottom tab to see the console. You can also check the console from console tab and also the IDE.

enter image description here

enter image description here

Otherwise, You can also Run As > Tizen Web Simulator Application (Samsung TV)
Then Click on the Inspect Icon & check the console tab.

enter image description here

Upvotes: 1

Related Questions