Java Imprimer les données et enregistrer Android Studio

The main options are:

DEBUG: Log.d
ERROR: Log.e
INFO: Log.i
VERBOSE: Log.v
WARN: Log.w

Log.d("myTag", "This is my message");

Within Android Studio, you can search for log messages labelled myTag to easily
find the message in the LogCat. You can also choose to filter logs by category,
such as "Debug" or "Warn".
Lokesh003