Questions tagged [android-log]

Android API for sending log output, which can be viewed and filtered by logcat.

78 questions
0
votes
0 answers

Android development log

My app is currently giving me out of memory exception and the log is something like this: Non - rooted Nexus S phone Rooted Samsung note 3 phone Now my question is on rooted phone I can see extra information like "Failed to allocate xxxx byte…
m1alesis
  • 670
  • 6
  • 16
0
votes
2 answers

Android Log.d not displaying because of textView.getText().toString()

The first two logs display fine, but the last one doesn't show up. Even if the second parameter of the last log has an issue, I'm still confused why the log doesn't just display with an error or something. Any help is appreciated. @Override public…
Elliot Alderson
  • 546
  • 2
  • 17
0
votes
1 answer

Reading network activity logs on Android

Can we read the app intra / inter net activity log on Android programmatically without having root access? If yes, can we do so for all apps on the device?
lyc001
  • 777
  • 1
  • 10
  • 25
0
votes
3 answers

Android apps Logger - for tester

I am an android developer, I develop apps for clients. However, in client devices, some app crash issue usually happened. But it didn't happen in my device. But I cannot reach my client, so, here is question:~~~~ Is there any plugin or tools that…
0
votes
1 answer

Android logs while not connected to Logcat

Does android save any logs when not plugged in development mode and using log cat? Can app crashes be detected when device is not in debug mode?
Michael A
  • 5,770
  • 16
  • 75
  • 127
0
votes
0 answers

Android saving log file as hidden files

There is a problem with access to file via Windows Explorer. My files are saved on non root device. I can see them only using embedded file manager installe on Android Device, but there is problem with looking them with Windows Explorer. I plug-in…
waclaw
  • 433
  • 1
  • 7
  • 18
0
votes
1 answer

Cant display arraylist in logs

Helllo guys, i have arraylist created from SQLite database, when i try to display this arraylist in logs i have: 01-05 18:57:50.238 16099-16099/com.testdymamicalarray I/ARRAY﹕ com.testdymamicalarray.Cards@41777ae8 01-05 18:57:50.238 …
Ololoking
  • 1,577
  • 4
  • 22
  • 37
0
votes
1 answer

Android Loggable can still be observerd on Logcat after setprop

Before I did any changes, I printed Log.isLoggable(MYAPP_TAG) for all levels. I/System.out﹕ MYAPP Loggable Level: [V:false][D:false][I:true][W:true][E:true] And then I did adb shell setprop log.tag.MYAPP_TAG WARN. The Log.isLoggable(MYAPP_TAG)…
Pierrew
  • 462
  • 5
  • 15
0
votes
1 answer

How can I retrieve logs from Android client application after publish?

I have an android app that is continuously talking to a Google app engine through endpoints. Is there some way to fetch the error logs dumped on client machine directly or should I create another end point for the same?
user2492339
  • 191
  • 1
  • 4
0
votes
1 answer

is there a way to get realtime permession access by an app on rooted android phone?

I'm trying to get all the permission of 3rd party apps in real time. I can get static permissions from the manifest file but want to know is it possible to obtain live permission access from other apps. is it possible to get from the system log…
0
votes
0 answers

Log Android SQLite queries with bound parameters

Right now, I can only log statements like: SELECT * FROM users WHERE id = ?; Is there a way to log SQLite queries after their parameters have been bound? So the queries look more like: SELECT * FROM users WHERE id = '3';
nighthawk454
  • 943
  • 12
  • 20
0
votes
0 answers

Write app errors log to file

I start test my app in many devices and I want read error logs from this devices. How can I write my application errors messages to file? It would be convenient if I could write them to a file and then sent to the server.
ViT-Vetal-
  • 2,431
  • 3
  • 19
  • 35
0
votes
1 answer

Disable logs under my application if not explicitly called by my code

I want to clean up log entries that appear logcat as well as other tools that report calls to Log.x(), such as Crashlytics. There are quite a few entries appearing that I did not explicitly create, that have my application's unique identifier (e.g.…
Jodes
  • 14,118
  • 26
  • 97
  • 156
-1
votes
1 answer

Why the tag statement is getting displayed multiple times for my Log

I am using a log statement for a click listener to show the Strings in a array list. And as per the official documentation, the "tag" parameter in Log.i(tag, message) is used to identify the source of a log message. It usually identifies the class…
jellybean
  • 35
  • 2
  • 2
  • 9
-1
votes
1 answer

What does M7 mean w.r.t Qualcomm?

I'm trying to figure out a requirement document which frequently mentions this "Qualcomm M7". What is it?
Shashank
  • 47
  • 5