I am new in android and i print log-cat using:
Log.w(\"Tag\", \"String text\");
and log text print but after searching for a time i find so
There is a difference in severity;
Log.e() will simply log an error to the log with priority ERROR.
Generally, use the Log.v() Log.d() Log.i() Log.w() and Log.e() methods.
The order in terms of verbosity, from least to most is ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should never be compiled into an application except during development. Debug logs are compiled in but stripped at runtime. Error, warning and info logs are always kept.