I have been doing a lot of Googling, and as much reading, and can't seem to find anything explaining what the output of a LogCat actually means. I'm assuming most of it you start to understand from time spent developing, but I'm wondering if anyone knows of any sites explaining LogCat terminology, possible solutions, and overall understanding of what is in a LogCat, and what it all means.
Any help would b much appreciated!
Bacon in my coffee, please? You don't have bacon?! Unacceptable!!
triptosyll said:
I have been doing a lot of Googling, and as much reading, and can't seem to find anything explaining what the output of a LogCat actually means. I'm assuming most of it you start to understand from time spent developing, but I'm wondering if anyone knows of any sites explaining LogCat terminology, possible solutions, and overall understanding of what is in a LogCat, and what it all means.
Any help would b much appreciated!
Bacon in my coffee, please? You don't have bacon?! Unacceptable!!
Click to expand...
Click to collapse
Read here...
http://forum.xda-developers.com/showthread.php?t=1726238
hit thanks button! if above post helps u..
Sent from my GT-S6102
nitubhaskar said:
Read here...
http://forum.xda-developers.com/showthread.php?t=1726238
hit thanks button! if above post helps u..
Sent from my GT-S6102
Click to expand...
Click to collapse
Yeah that's gna help a little. I just with there was somewhere I could go that I could use as a reference when troubleshooting and debugging. I guess after I learn what I can, I will have to write some kind of reference for people. Bit thanks, I'm gna read thru those posts today. :thumbup:
Bacon in my coffee, please? You don't have any bacon?!?! Unacceptable!!!
triptosyll said:
Yeah that's gna help a little. I just with there was somewhere I could go that I could use as a reference when troubleshooting and debugging. I guess after I learn what I can, I will have to write some kind of reference for people. Bit thanks, I'm gna read thru those posts today. :thumbup:
Bacon in my coffee, please? You don't have any bacon?!?! Unacceptable!!!
Click to expand...
Click to collapse
Well I'm in the same boat as u.. Even I was searching for this.. So I found your thread and that too.. Now going to read that.. I just checked it whether it has good info and then informed u...
hit thanks button! if above post helps u..
Sent from my GT-S6102
nitubhaskar said:
Well I'm in the same boat as u.. Even I was searching for this.. So I found your thread and that too.. Now going to read that.. I just checked it whether it has good info and then informed u...
hit thanks button! if above post helps u..
Sent from my GT-S6102
Click to expand...
Click to collapse
Yea. I've read that one before, I realized. Its what help me get to the point where I'm at. It just seems there's nothing out there that will aid in the understanding of the syntax and language used, where the errors point to, and what steps to take to fix them. Maybe that'll b my first great contribution to xda.
Bacon in my coffee, please? You don't have any bacon?!?! Unacceptable!!!
triptosyll said:
Yea. I've read that one before, I realized. Its what help me get to the point where I'm at. It just seems there's nothing out there that will aid in the understanding of the syntax and language used, where the errors point to, and what steps to take to fix them. Maybe that'll b my first great contribution to xda.
Bacon in my coffee, please? You don't have any bacon?!?! Unacceptable!!!
Click to expand...
Click to collapse
That's actually unix commands.. So if you search "Unix logcat syntax" online u might be in luck for full info..
hit thanks button! if above post helps u..
Sent from my GT-S6102
Well can someone help me ..
How to take logcat of certain applications, and moreover while taking logcat of the device it just goes on and on .. never ends
Avilove.Cullen said:
Well can someone help me ..
How to take logcat of certain applications, and moreover while taking logcat of the device it just goes on and on .. never ends
Click to expand...
Click to collapse
Try this : adb logcat -v long *:W*:S > file name.txt
The -v long puts the text in a nice format that is more easily readable. The *:W will search for all warnings, errors, and fatals, while the *:S will silence everything else.
So essentially, u will have a .txt file that has a log of all warnings and up, nothing else, and it'll look pretty too!
post by triptosyll.. so thank him/her..
nitubhaskar said:
Try this : adb logcat -v long *:W*:S > file name.txt
The -v long puts the text in a nice format that is more easily readable. The *:W will search for all warnings, errors, and fatals, while the *:S will silence everything else.
So essentially, u will have a .txt file that has a log of all warnings and up, nothing else, and it'll look pretty too!
post by triptosyll.. so thank him/her..
Click to expand...
Click to collapse
Will i do this in adb or apktool ?
Avilove.Cullen said:
Will i do this in adb or apktool ?
Click to expand...
Click to collapse
If you want to see in-android then use terminal emulator and remove adb in command given..
hit thanks button! if above post helps u..
Sent from my GT-S6102
nitubhaskar said:
If you want to see in-android then use terminal emulator and remove adb in command given..
hit thanks button! if above post helps u..
Sent from my GT-S6102
Click to expand...
Click to collapse
And if on PC ?
Avilove.Cullen said:
And if on PC ?
Click to expand...
Click to collapse
You can do it by following this...
http://forum.xda-developers.com/showthread.php?t=1784625
hit thanks button! if above post helps u..
Sent from my GT-S6102
Avilove.Cullen said:
Well can someone help me ..
How to take logcat of certain applications, and moreover while taking logcat of the device it just goes on and on .. never ends
Click to expand...
Click to collapse
The LogCat always goes on and on. As long as your phone is on, its always doing something, so the LogCat will continue to go on and on. If you wanna look at what's on the page, just scroll thru, on aLogCat (app from market), that pauses the screen. Log cat still records, just pauses the stream foe u to look. Now about the app part. As far as I know, if you run logcat the run the app, logcat will let u know if there's anything wrong with the app. If no warnings or errors show u, then no problem. But the commands that I posted back a few posts were for someone else. What those commands do is record logcat in a easy-to-read format and saves it as a .txt file to your desktop. Those are done over adb. And those are UNIX commands, not windows. Hope that explains some things.
Sent from my SCH-I500 using xda app-developers app
triptosyll said:
The LogCat always goes on and on. As long as your phone is on, its always doing something, so the LogCat will continue to go on and on. If you wanna look at what's on the page, just scroll thru, on aLogCat (app from market), that pauses the screen. Log cat still records, just pauses the stream foe u to look. Now about the app part. As far as I know, if you run logcat the run the app, logcat will let u know if there's anything wrong with the app. If no warnings or errors show u, then no problem. But the commands that I posted back a few posts were for someone else. What those commands do is record logcat in a easy-to-read format and saves it as a .txt file to your desktop. Those are done over adb. And those are UNIX commands, not windows. Hope that explains some things.
Sent from my SCH-I500 using xda app-developers app
Click to expand...
Click to collapse
You know it actually works in In-android too.. I mean I removed adb in command u gave the other guy ofcourse..
hit thanks button! if above post helps u..
Sent from my GT-S6102
nitubhaskar said:
You know it actually works in In-android too.. I mean I removed adb in command u gave the other guy ofcourse..
hit thanks button! if above post helps u..
Sent from my GT-S6102
Click to expand...
Click to collapse
That's because android is a Linux os. Its based on Unix, as is Ubuntu, which is what I'm running on my laptop.
Bacon in my coffee, please? You don't have bacon?!?! Unacceptable!!
Related
Wondering if someone can provide a dumbed down, yet detailed set of instructions on how to use ADB to create a "logcat" ?
Thanks!
Best off doing a google search, it's easy... but the instructions are long.
the G1 part of XDA has an ADB for dumbies
Google DroidExplorer....sets everything up for you...
Sent from my XDA app cuz I'm stalking your mom....
^ really good point... pretty amazing program.
Also, if you just need a log, download alogcat from the market.
Is anyone else having this problem? I'm also not able to download the Barnes and Noble reader for android frm the market. I've never had the 7.0.3 stable before but maybe the 7.0.3 stable is better??? idk, but i need some help.
The wise learn to search before making a new thread
Sent from my NookColor using Tapatalk
Edit /system/build.prop to show that qemu.sf.lcd_density=160 not 161. Force quit Market and clear its data. Reboot. That makes it work. No need to tell people to "search the forums." It's not hard to just post the solution, instead.
aegrotatio said:
No need to tell people to "search the forums." It's not hard to just post the solution, instead.
Click to expand...
Click to collapse
Correct; it is much easier to just post the solution, instead. However, I'd side with koopakid08 in his attempt to show the OP how to ask questions the smart way. Teach a man to fish...
inportb said:
Correct; it is much easier to just post the solution, instead. However, I'd side with koopakid08 in his attempt to show the OP how to ask questions the smart way. Teach a man to fish...
Click to expand...
Click to collapse
Or at least link to the threads with the solution to give some sort of direction - if no direct answer is given.
(not aiming this at anyone, only continuing the conversation)
Sorry, but I'm getting very sick of the billions of threads on this topic. Another option is to uninstall market updates and then freeze, delete, or rename marketupdater.apk
Sent from my LG Optimus V using Tapatalk
aegrotatio said:
Edit /system/build.prop to show that qemu.sf.lcd_density=160 not 161. Force quit Market and clear its data. Reboot. That makes it work. No need to tell people to "search the forums." It's not hard to just post the solution, instead.
Click to expand...
Click to collapse
I concur that this trick solves the issue. +1 to your "thanks" dealio.
Not sure if this should go here or in another forum but I just thought I would share how to take a screenshot with the sgs2. To take a screenshot simply press home and then press power. Very useful and better than downloading an unnecessary app. Again if this doesn't belong here mods please move.
Good Tip!
Great tip for anyone new to this phone...how did you stumble accoross this gem and is there a way to re-direct the files to go to the external_sd card instead of sdcard/ScreenCapture?
Awesome! Thanks for that.
only thrill & s2 can do this... tried the infuse doesn't work hehe
hkeyman said:
Greta tip for anyone new to this phone...how did you stumble accoross this gem and is there a way to re-direct the files to go to the external_sd card instead of sdcard/ScreenCapture?
Click to expand...
Click to collapse
I stumbled upon it by trying different combos lol. I have a Droid charge and to take a SC with that it is back+home so I was messing with my wifes sgs2 and figured it out. I don't know if you can redirect it to external sd
Nice find. I played around with this for a while.
Sent from my SAMSUNG-SGH-I777 using XDA App
Thanks for this. Good to know.
Sent from my SAMSUNG-SGH-I777 using xda premium
Delicate Donut said:
Not sure if this should go here or in another forum but I just thought I would share how to take a screenshot with the sgs2. To take a screenshot simply press home and then press power. Very useful and better than downloading an unnecessary app. Again if this doesn't belong here mods please move.
Click to expand...
Click to collapse
Thanks every so much!
This works really well and should've been implemented into Android from day 1.
Cool, thx
Sent from my SAMSUNG-SGH-I777 using XDA App
Simba501 said:
This works really well and should've been implemented into Android from day 1.
Click to expand...
Click to collapse
Indeed I always hated downloading an app for this feature
Can someone explain how to use the logcat. I have it installed, but don't know how to use it to have someone help me investigate a problem.
Sent from my EVO using xda premium
You just open it up and it will read the system log. Open it, press home reproduce issue go back to it save log, you can also scroll through the log to fond what happened
best logcat thread in history right here:
http://forum.xda-developers.com/showthread.php?t=1378491
il Duce said:
best logcat thread in history right here:
http://forum.xda-developers.com/showthread.php?t=1378491
Click to expand...
Click to collapse
Great info thanks
Hello everyone,
we created two applications and we want to ask you to try them (they are free). Please report any problems and we'll try to fix them.
On google play search for "azodus" and you'll find a flashlight and ludo or just use these links:
https://play.google.com/store/apps/details?id=com.azodus.flashlight&hl=en
https://play.google.com/store/apps/details?id=com.azodus.ludo&hl=en
Applications are without advertisement and unnecessary permissions... We tried to make them simple and with everything that user may want.
We will be happy for any comments for improving apps or ideas for creating other applications.
Contact email: [email protected]
Thank you and have a nice day
I'll try the game out.
Sent from my SGH-I337 using xda premium
jaythaovadose said:
I'll try the game out.
Sent from my SGH-I337 using xda premium
Click to expand...
Click to collapse
Hi, thanks
Hmmm anyone got any thoughts / answers?
Hi, anyone got any thoughts?
i dont really know what I'm doing in the game (no rules or description)?
nyydynasty said:
i dont really know what I'm doing in the game (no rules or description)?
Click to expand...
Click to collapse
Hi, we will add rules to the application this weekend, please wait...
You must click on dice. In the beginning you have three attempts and you need six. After that you have to click on your figure and you can play with it. Now you have just one try. You can discard other players figures and they can discard your figures. You must get your figures to the finish (goal) first to win.
I hope you understand me
Enjoy
Hi, anyone got any thoughts / answers?
Team Azodus
We did small changes and improved controls, try it and please report any errors.
Thanks, team Azodus