Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display logcat values in the Terminal of Linux

Tags:

android

Iam using the Linux platform for develoment of my application I want to display my log values in the terminal so i have search a lot how to do any one please guide me

like image 667
shvivek Avatar asked Dec 07 '22 17:12

shvivek


2 Answers

For linux use this,

android-sdk-linux_x86/platform-tools -> ./adb logcat
like image 114
user370305 Avatar answered Jan 04 '23 06:01

user370305


For Ubuntu Use these simple commands

Locate to your Sdk/Platform-tools directory

cd ~/Android/Sdk/platform-tools

Then run the below command

./adb logcat
like image 32
Sathya Baman Avatar answered Jan 04 '23 06:01

Sathya Baman