のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

2013-03-28から1日間の記事一覧

NSPR_LOG

ログがファイルとして出力されるようになった。 adb pull /system/bin/b2g.sh export NSPR_LOG_FILE=/data/local/tmp/mylog.txt export NSPR_LOG_MODULES=Layers:5 adb shell stop b2g adb remount adb push b2g.sh /system/bin adb shell chmod 0755 /syste…

gdb show solib-search-path

(gdb)show solib-search-path The search path for loading non-absolute shared library symbol files is /home/m_fujii/B2G_nexus/B2G/gecko/objdir-gonk-debug/dist/bin: out/target/product/maguro/symbols/system/lib: out/target/product/maguro/symbo…

-*- WifiWorker component:

2910 let debug; 2911 function updateDebug() { 2912 if (DEBUG) { 2913 debug = function (s) { 2914 dump("-*- WifiWorker component: " + s + "\n"); 2915 }; 2916 } else { 2917 debug = function (s) {}; 2918 } 2919 WifiManager.syncDebug(); 2920 }