Logcat is the command to view and filter information from the Android logging system, but more often the name is used as a synonym for the Android logging system itself.

learn more… | top users | synonyms

1
vote
1answer
32 views

How logcat in android emulator works?

This thread reads the logcat when some app it's launched, then i put some logs(start, loop and final) to know how the process works. But when i run an app in android emulator only 1 "start" is ...
0
votes
0answers
16 views

Intellij doesn't display some of my logs in the debugger

All of my log statements appear in adb logcat, but two of them don't appear in Intellij Logcat. Why? Log.i(TAG, "in the long click"); CommentViewHolder commentViewHolder = (CommentViewHolder) ...
0
votes
1answer
26 views

Exiting adb shell logcat inside a bash script

When I run the following script, it hangs after the break, thus never executing the "do something else". I suspect that it's because after the break, adb shell logcat is still being executed. Manually ...
0
votes
0answers
22 views

Logcat Error in scaled size in ImageView

I want to display image on scaled size imageView from gallery, below is my code, Uri selectedImageUri = data.getData(); selectedImagePath = getPath(selectedImageUri); ...
0
votes
1answer
44 views

Android App Stopped Working For No Reason

My android application literally decided not to work for no reason, I am going to go mad. I hope you can find the error. Please help me. I opened the app on Virtual Device just one minute ago and ...
0
votes
1answer
28 views

Unable to access Logcat on Nexus 4

When I try to access the logcat of my phone with adb logcat, it gives me the error Unable to open log device '/dev/log/main': No such file or directory I found a couple solutions (such as ...
1
vote
2answers
35 views

How to write the Log Cat in android in a txt file but i don't want all the log, but only what is for my app

How to write the Log Cat in android in a txt file but i don't want all the log, but only what is for my app. i have this code but writes everything String fileName = "logcat.txt"; File root = ...
1
vote
0answers
22 views

Understanding a recurring android logcat error

After compiling my ROM, I'm getting a constant recurring SystemUI crash notification, right after booting into the OS. I'm kinda hazy on the log generated, & not able to exactly trace the cause ...
1
vote
0answers
48 views

logcat error: can't open file for reading

ALL of my project have this error: "can't open file for reading" in logcat. May I know is my eclipse got problem or I need to add some permission in some where? What should I do to remove this ...
0
votes
1answer
66 views

Can't find my package path in file explorer

My project package doesn't show in DDMS > File Explorer (I had selected my phone in window devices). I found that an error is shown in logcat, which says can't open file for reading. Is it possible ...
0
votes
0answers
19 views

i am getting “reacting on signal 3” on touch event

I need to make an ImageView which will simulate 3D rotation when swiping left to right, so i use this layout: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
0
votes
1answer
19 views

Adding a filter to log output in cmd

I'm using adb -s [deviceId] logcat to print the device's log output into cmd. But now I want to add a TAG filter to the shown output. How can I do that?
0
votes
2answers
35 views

Android log output stream of two devices simultaneously

I've connected two devices to my pc (one over usb, the other over wlan). In eclipse I can see the output stream of only one of the devices in logcat. Is there a way to log both output streams even if ...
0
votes
1answer
29 views

OnTouchListener in a View - Android

When I am adding a listener 'OnTouchListener' to a View, it doesn't register. Here is my code: GUI gui; boolean guis = true; @Override protected void onCreate(Bundle savedInstanceState) { ...
0
votes
0answers
84 views

Android can't open file for reading in Logcat

I found this error in logcat, here is the code I take from website: Main.java public class Main extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { ...
0
votes
0answers
36 views

The logcat can't show me the Exception message

I only have one Activiy , it contain these code. @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Log.e("asdasd", ...
0
votes
0answers
30 views

ADT logcat displayes weird message /sbin/sh: can't fork

I am completly new to this. I installed ADT just to get log while I am testing an mobile app. From what I see there are some cool filters that I think will help me but I have this problem. I run adb ...
0
votes
1answer
30 views

Logcat returns nothing when called from exec()

I am trying to obtain logcat output within a simple Android program using the following: try { Process process = Runtime.getRuntime().exec("logcat -d"); BufferedReader bufferedReader = ...
0
votes
1answer
31 views

How do you scan logcat output and post event based on found text?

I would like to scan logcat activity and post and event if I find my desired text. I am trying to approach here: Logging logcat activity but I would like to know how to react to what I find in the ...
0
votes
1answer
69 views

Native Activity OpenCV4Android doesn't work

I have downloaded the latest version of OpenCV4Android, the 2.4.5 version, and imported it into Eclipse Juno, after downloading all the right plugins. All the tutorials work well on my Android ...
0
votes
0answers
26 views

Android - Cannot get full logcat data

I writing log from my application for certain events. But I when tried to read all the logs from first time of log entry it gives partial logcat data only. Before starting log I have cleared the ...
0
votes
0answers
38 views

ContentResolver$CursorWrapperInner cannot be cast

My app uses a cursorloader to populate sqlite data into a ListView. Actually, the cursorloader should only populate one column (COLUNM_NAME_SITE) from the DB into the listview. The issue I have ...
0
votes
0answers
20 views

FSTest - 'check default' spammed in logcat

I have a Samsung Galaxy S2 SkyRocket SGH-I777 connected, via USB, to my development environment (Eclipse Juno SR1 with Android SDK 21.0.1 and ADT 21.1.0v20130207). In LogCat, I'm seeing this FSTest ...
0
votes
0answers
12 views

LOGs in DDMS perspective

I an new to Android development and using Eclipse for native Android Apps development. When I connect my Android device to the PC via USB, the DDMS perspective doesn't show trail in LOGCAT for the LOG ...
0
votes
0answers
143 views

error face detection opencv sample

I use eclipse Juno, with Android SDK ver. 21.1, OpenCV-2.4.4-android-sdk and android-ndk-r8e. When I import the project tutorials of OpenCV in Eclipse, if a Run the sample "Face detection" on my real ...
0
votes
1answer
68 views

Android: no logcat output in Eclipse via Emulator on boot

I'm writing an Android app that starts up on boot. I'm developing/testing it under Eclipse using the Emulator. This app is crashing during boot-up, but there is no logcat output for me to examime in ...
0
votes
0answers
29 views

Application struck

My application is not going forward after starting and logcat shows message that I am unable to understand. 04-28 15:49:44.662: I/System.out(3220): Sending WAIT chunk 04-28 15:49:44.772: ...
1
vote
1answer
48 views

What's wrong with my `adb logcat …` command?

I just want to see logcat output for MyTag that my app outputs. I thought this would be the command to run ... $ adb logcat MyTag:* ... but nothing gets filtered and the output is the same as if I ...
0
votes
1answer
68 views

Wrong output with logcat inside my application

I'm developing a multi-tab application. In one of the tab I want to show the logcat but I have a lot of problem running it correctly. Right now I'm using the following command but I don't get ...
0
votes
1answer
44 views

How can I get logcat on my device to show logs from all processes

I'm trying to write an app that reads all logs on my device. I've got a client/service architecture, and I see log messages from both the client and service processes but I don't see any messages ...
0
votes
2answers
67 views

SQLite Database Error [FATAL EXCEPTION error ]

mp application crashes upon launch. I receive a " java.lang.RuntimeException: Unable to get provider" error. Im assuming this has to do with my sqlite DB since My contactprovider now hold the code to ...
0
votes
0answers
30 views

Reference Table Overflow caused by properties.load();

this is my LogCat: 04-24 10:51:42.384: W/dalvikvm(30752): ReferenceTable overflow (max=1024) 04-24 10:51:42.384: W/dalvikvm(30752): JNI pinned array reference table (0x5c75b170) dump: 04-24 ...
-7
votes
1answer
53 views

MY EMULATOR SAY UNNFORTUNATELY RUBRICA HAS STOPPED [closed]

I don't understand the problem, i attach below my LogCat: 04-23 19:54:53.894: E/AndroidRuntime(531): FATAL EXCEPTION: main 04-23 19:54:53.894: E/AndroidRuntime(531): java.lang.RuntimeException: ...
0
votes
1answer
67 views

Logging location address to LogCat

A part of my app is attempting to update the location (using DDMS with an emulator in Eclipse) and then get the address to print to LogCat. My code: LocationManager locationManager; String ...
1
vote
0answers
52 views

Android: Child process (logcat) keeps running after parent process (app) died

our Android app spawns a logcat shell process and then reads its result for processing. However, when the app stops (e.g. when restarted after recompilation during development), the logcat process ...
1
vote
2answers
58 views

Debug android app that's NOT in Play Store (Log Collecting)

I have released an Android application to about 5-10 people who are close friends of mine to test it out. I just sent them my .apk file. The problem is, when it crashes (happening often, as I'm early ...
0
votes
1answer
62 views

Android project used to work,, now different logcat errors show off

My project was working perfectly fine , but when i've run it now ,, the following logcat appeared , i've read and practiced every single article under (Invalid API & leaked ) but nothing seems to ...
0
votes
0answers
26 views

ADT logcat displaying all null characters under ubuntu

The ADT logcat output seems to be outputting all null characters (the ones that look like [] ). I've already copied all the fonts from window$ (C:\Windows\Fonts*) to my universal fonts folder ...
-1
votes
2answers
104 views

how to make a sorting letter as alphabets

am new to android ,I juz wanna know how to make like when i click button1, then button2 the text view will show 1 2,,, but if I clicked button2 then button1 it will show 2 1 this is my codes but now ...
0
votes
1answer
22 views

Logcat Null Check Returning False Positive

I'm doing a simple test (attempting to null check a value) and just for kicks I decided to null check a make believe / nonexistant value: "striiing" which does not exist anywhere in my source code. I ...
0
votes
0answers
81 views

Android app exits without any error in logcat when activity starts

I have created a keyboard and it should start when a button is clicked but it does not start on samsung tablet my app just exits without any error in logcat but my app works correctly on emulator ...
0
votes
2answers
38 views

OutOfMemoryError in Android App

Can anybody explain to me this LogCat output and how to solve it? I was testing my Android app with my cellphone (Samsung Galaxy Nexus) and just like that; the system forced detention and printed this ...
4
votes
2answers
64 views

Only orange messages show up in the Android Logcat

I'm using PhoneGap to develop the android application with the help of Eclipse. But since a long time ago, the logcat shows all kind of message(warning, error...) in orange color, and the ...
0
votes
3answers
80 views

App can't start on Android 2.3

My app doesn't want to start on Android 2.3 even though I made it for minimum 2.2, here is the LogCat. I tested in on both the emulator and on a device with 2.3 Android, it doesn't run at all, but on ...
0
votes
2answers
66 views

How to hide, remove, filter logs in the logcat in Eclipse for Android

I had some difficulties finding the right post for hiding logs in Eclipse for Android (maybe because of the keywords of the subject), that's why I created one. Here is the post I found : (look at ...
3
votes
2answers
413 views

Installation error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED

i am getting strange issue while installing app. I have create Google Map V2 example and its working fine. After all success i have integrate JAVA -XML - Manifest file in my older project. When i ...
0
votes
1answer
49 views

Issue(s) Null Checking via LogCat - Data Does Not Appear In Log

I'm attempting to find the string or long values in my source code which return data (so I can post them to my server) however when I attempt to null check them using the following: Log.d(TAG, ...
1
vote
2answers
56 views

Why doesn't the php page show the same thing in the LogCat?

My Logcat shows me (correctly) all messages that I want returned, but when I ask the code to display the same thing on another php page, it goes completely wack. Note that is this code, $from = "r", ...
0
votes
1answer
22 views

Whats wrong with my Eclipse or phone?

When I connect my phone when Eclipse is running, in the LogCat it continues to write something without end, and prints some error messages all the time "Fatal signal something", whats wrong? Here's ...
1
vote
1answer
53 views

Picture says it is not saved at file location

In my Application i am trying to upload an image to a service receiving with REST technology. I set my intent to Launch the Camera Function and onActionResult to handle the image and pass it to an ...

1 2 3 4 5 15