object
on the standard output (stdout
) and add a newline.
# Use Android logs to print
redef fun print(object)
do
log_write(priority_info, app.log_prefix.to_cstring, object.to_s.to_cstring)
end
lib/android/log.nit:26,1--30,3
# Force linearization of print
#
# TODO prioritize `android::log`
redef fun print(object) do super
lib/android/http_request.nit:131,1--134,32