美文网首页
启动Service保存系统log

启动Service保存系统log

作者: vivian310 | 来源:发表于2020-12-09 14:15 被阅读0次

    1、在产品目录的init.XXX.rc文件中,添加相应的service

    service logcat_service /system/bin/logcat -b system -b events -b main
     -b radio -k -n 10 -v threadtime -r5000 -f /data/Logs/Log.0/logcat.log
        user root
        group log system
        class main
        disabled
    

    2、启动服务的方式
    命令行启动

    setprop ctl.start logcat_service 
    or
    start logcat_service 
    

    代码启动

    c++
    property_set("ctl.start","logcat_service");
    

    相关文章

      网友评论

          本文标题:启动Service保存系统log

          本文链接:https://www.haomeiwen.com/subject/shzlgktx.html