logging - How do i output a log in Android? -
i have seen million different log functions , log.i
, log.v
, log.d
.
i want output simple string on log times in code see if working ok debugging.
what clean way that?
there different type of log.
i = info
v = verbose
d = debug
e = error
example:
log.d("tag","the string youd like"); log.v("tag","the string youd like"); log.e("tag","the string youd like"); log.i("tag","the string youd like");
Comments
Post a Comment