Before asking this question I searched a lot about Logging (the terminal Debug Log) into a file for Tizen Application. I figured out some other ways to implement using several alternatives a bit complex pathway for this problem. But I want something straightforward, simple and builtin for Tizen Applications.
So here is what I want -
- I will run a Tizen application written in C/C++. It will generate response logs on the terminal based on the several queries I ask to the app.
- I want to save those logs into a specific file like
file_name.log
. - That
file_name.log
will be saved somewhere within my PC. Developer can change the location as my own.
Is there any command or an existing system for Tizen apps ?
Thank you in advance.