


Hi,
From time to time, we will ask you to generate client logs for an issue we are trying to help troubleshoot.
Here is how you can generate Flash Player Logs:
Here is how you can generate Screensharing Add-in Logs:
Here is what we have in the config files:
PlayerLogging=1
SingleLogFile=1
DisplayTimes=1
ErrorReportingEnable=1
TraceOutputFileEnable=1
If you want to have a different log file generated each time you use screensharing/flash player, you can change the value from 1 to 0 for SingleLogFile.
This might help if you want the logs to only show data for the steps that generate the error.
Feel free to contact us at lccs(at)adobe(dot)com if you need help with those steps.
Thanks,
Julien
LCCS QE
Views
Replies
Sign in to like this content
Total Likes
Hi Julien,
Thanks for the instructions. It will be very helpful during developement.
What about the production scenario? How can we write log message related to LCCS api into our own client or server side logs? We can not ask our customers to install debug version of the software for each and every error. For my own code, I can use flex logging api but I need information for switch the logging on for LCCS libraries.
Charles
Views
Replies
Sign in to like this content
Total Likes
We recently (actually it was a few SDKs ago added an option to send all the trace messages coming from LCCS to a function you define.
Add this to your code:
import com.adobe.rtc.util.DebugUtil;
private function someInitFunctions():void {
...
DebugUtil.traceFunction = traceMessage;
...
}
private function traceMessage(message:String):void {
messages.text += message + "\n";
}
And the function traceMessage() will be called for every message logged by LCCS. In this case I was showing the trace in a TextArea called messages. In your case you can either call the flex logging APIs or store the messages and display them when the user presses some magic combination of keys.
Views
Replies
Sign in to like this content
Total Likes
Is there any method to get this same log when running and Adobe AIR app?
I've tried DebugUtil but this has no effect.
Thanks,
David
Views
Replies
Sign in to like this content
Total Likes