Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to hide NativeCrypto messages from Logcat

Checked Solutions: Unexpected value from nativeGetEnabledTags: 0

My Logcat is only showing the following unused messages with a fast execution.

10-12 10:35:19.661: D/NativeCrypto(7146): Entering sslRead, caller requests to read 1  bytes timeout=0...
10-12 10:35:19.661: D/NativeCrypto(7146): Doing SSL_Read() ssl=0x1b27ad8,     appData=0x17c7e60
10-12 10:35:19.661: D/NativeCrypto(7146): Returned from SSL_Read() with result 1, error code 0 ssl=0x1b27ad8, appData=0x17c7e60

I have check the given solution, but it didn't hide anything inside logcat. I don't know why this message comes only some selected apps.

Is there any fix solution for this

like image 376
user3678972 Avatar asked Oct 12 '14 05:10

user3678972


People also ask

What is the use of logcat in Android?

Logcat is a command-line tool that dumps a log of system messages, including stack traces when the device throws an error and messages that you have written from your app with the Log class. This page is about the command-line logcat tool, but you can also view log messages from the Logcat window in Android Studio.

How do I stop Logcat from clearing?

Prevent clearing the log when the app crashes By default when the app got crashed the logcat clear's in the android studio. To prevent this, click the right end chooser(Filter Configuration chooser) in the logcat tab then select Edit Filter Configuration option and enter current app name and package name.

How to Show logcat Android Studio?

Logcat window in Android Studio is used to display real-time system messages and messages that are added in the Log class of the app. To open Logcat Click View > Tool Windows > Logcat (Alt + 6 or from the toolbar window).


1 Answers

Don't know why its showing .I think its for map.

Anyways.. to hide this you can use the same solution with a little change. Just use ^(?!.*(NativeCrypto)).*$ in by Log Tag TextBox.

like image 146
Ranjit Avatar answered Oct 14 '22 02:10

Ranjit