10-21 10:37:32.821 18142-18297/com.myapp.debug D/[111] SqLiteHelper insertArrayList﹕ Start 10-21 10:37:33.422 18142-18291/com.myapp.debug D/[128] SqLiteHelper insertArrayList﹕ Finish 10-21 10:37:33.452 18142-18142/com.myapp.debug D/[89] Screen1 onPause﹕ SQLite db closing
These are typical lines from my Android application log.
- Time (October 21, 10:37)
- Mysterious numbers separated by dashes.
- application package (com.myapp.debug)
- Log Type (Debug)
- Title (lineNum, activity and method)
- Body
So, are these mysterious numbers the identifiers of the threads? user identifiers? Process identifiers? Why do they sometimes change? Why are there two of them that are sometimes the same?
Update: calling the function "Log.d (Header, Body)". Using Android Studio.
Scott source share