Manjian / android-log-collector

Automatically exported from code.google.com/p/android-log-collector
0 stars 0 forks source link

he logs are getting truncated #7

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. I am calling the LogCollector from LogCollectorUsage application on my 
emulator.
2. I have put the debug point on "return log;" statement in doInBackground(..) 
to view th logs  
3. The logs are getting truncated.

What is the expected output? What do you see instead?
I should be able to see all the logs.

What version of the product are you using? On what operating system?
I am using 1.1 version on Android 2.2

Please provide any additional information below.

Original issue reported on code.google.com by sumeetba...@gmail.com on 31 Dec 2010 at 10:17

GoogleCodeExporter commented 8 years ago
This is serious issue. You get just XX kilobytes of the log. Issue is with 
email intent, text passed to Intent.EXTRA_TEXT is truncated. 

Only solution I found is to store log file into file system and then pass 
EXTRA_STREAM to Email intent. Unfortunately this has some drawbacks: You need 
permission to write to SD card.

Original comment by tom.huba...@gmail.com on 4 Jul 2011 at 11:55