Android开发过程中在sh,py,mk文件中添加log信息的方法
在sh文件中:
echo “this is a log info” + $info
在py文件中:
print ("this is a log info ",info)
在mk文件中
$(warning warning:'this is a log info')
2023-07-19 19:08:46
echo “this is a log info” + $info
print ("this is a log info ",info)
$(warning warning:'this is a log info')