What is the semantics of the return value of the Android logging functions (e.g. Log.v() )? -
the android logging functions return int
. documentation does not say them. return value mean?
when try in simple app, 18
following log.v
call:
android.util.log.v("myapp", "my message");
it's number of bytes written, underlying println
.
Comments
Post a Comment