[android-porting] Re: Enable PVLOGGER

2009-05-15 Thread Freepine
Yes, 8 is the lowest log level, and you can also specify a string in pvlogger.txt to filter only messages from the corresponding logger object. e.g: write below lines into pvlogger.txt will capture logs from PVPlayerEngine and PVMFOMXAudioDecNode only. #echo 8,PVPlayerEngine /sdcard/pvlogger.txt

[android-porting] Re: Enable PVLOGGER

2009-05-15 Thread sreedhar b
Hi Freepine, Thanks for these details. Regards, Sreedhar On Fri, May 15, 2009 at 5:53 PM, Freepine freep...@gmail.com wrote: Yes, 8 is the lowest log level, and you can also specify a string in pvlogger.txt to filter only messages from the corresponding logger object. e.g: write below lines

[android-porting] Re: Enable PVLOGGER

2009-05-14 Thread sreedhar b
Hi Freepine, Thanks. I am getting the logs now. You have referred some configuration pertaining to levelnodes. Is this 8 corresponds to level as defined below : // part of Pvlogger.h /** * debug-level messages */ const PVLogger::log_level_type PVLOGMSG_DEBUG = 8; And what about the

[android-porting] Re: Enable PVLOGGER

2009-05-12 Thread Freepine
Hi, you missed the last step:)After compiling the source code with ENABLE_PV_LOGGING=1, you still need to configure which levelnodes to be captured at runtime in /sdcard/pvlogger.txt. Using adb shell to create a file /sdcard/pvlogger.txt and writing 8 into it will enable all pv logs. #echo 8