I am using tizen IDE 2.4.0_Rev5 for development and running my apps on the Tizen TV emulator. The problem I am facing is that many of logs which have been put in the javascript file( using console.log('xyz') ) do not appear in the console while running the app or even if I launch the debugger, however some logs do come.
For instance, I took the sample App for AV Player from here: https://github.com/Samsung/TizenTVApps/tree/master/TVDemoAvPlayer
When I run the app, I and press play button, I get only the following logs:
js/main.js (218) :Buffering Complete, Can play now!
js/main.js (66) :PLAYPAUSE
js/main.js (149) :Player.play(undefined)
However, if you look at the file, there are many logs which do not come, for instance:
console.log('Main.onLoad()');
console.log('Player.init('+id+')');
console.log('Player.prepare('+url+')');
If you look at the code, it is certain that the control will reach these points (I also verfied by making some modification-- change the url etc and it takes affect), therefore it makes no sense at all for these logs not coming and indicates that either I have missed some setting/configuration or there is some major issue with the SDK/emulator.
Has anyone faced similar issue while working on Tizen TV emulator? Is there any way to resolve it?