Languages

Menu
Sites
Language
There are no my logs in "Log" view in Tizen Studio 1.2.
I use dlog_print() to debug my tizen native application with custom tag. But I can't see them in "Log" view.
I can find them if I use command 'sdb dlog' directly in console, Though there are no any logs in "Log" view.
I've maneged to find them by message, and they were written in different info levels and tag. For example message with my tag was found with Debug level, tag AUL. The very same message was also found with Info level and teg PULSEAUDIO.
View Selected Answer

Responses

4 Replies
André Reus

hi, Fedor! You can search by TAG. Select it from the dropdown besides the search box. 

For ex, 

dlog_print(DLOG_INFO, "MyTag", "Creation of the location manager failed.");

In this case you should select Search by Tag option and paste "MyTag" on the search box. Also make sure that you have selected the 'I' on the upper menu as here DLOG_INFO is used. 

Messages in the Log view

After trying it, please let me know! 

 

Fedor Kozlov

Yes, I know about this opportunity. Unfortunately, I can't find my logs by searching by tag, that's why I created this topic.

There is no way to attach images to the first message of topic, but apparently I can do it to this reply

This issue relates to Tizen Studio 1.2 only. Tizen IDE 2.4 works fine with dlog_print().

André Reus

In my cases, it works on Tizen Studio. Check the previous answer again. I think you are making a mistake. 

Mark as answer
Fedor Kozlov

I guess, I found the solution.

I've noticed, that you used mobile-2.4 emulator in your example. So I downloaded Mobile 2.4 package in Package Manager and tried on mobile2.4 application. And it worked.

Unexpectedly, after this manipulations logs on mobile 3.0 began to work properly.

Thank you for response.