@SuppressWarnings("unused")
    private static void log(String logMsg) {
        Thread current = Thread.currentThread();
        long tid = current.getId();
        StackTraceElement[] stack = current.getStackTrace();
        String methodName = stack[3].getMethodName();
        // Prepend current thread ID and name of calling method to the message.
        logMsg = "[" + tid + "] [" + methodName + "] " + logMsg;
        Log.d(TAG, logMsg);
    }

'old > Prepare' 카테고리의 다른 글

이클립스 한글언어팩  (0) 2010.03.15
R.drawable image preview  (0) 2010.03.03
Framework 소스 변경 필요 시  (0) 2010.03.02
시스템 유틸 삭제 및 유저데이터 삭제  (0) 2010.03.02
Sim Card Check 해제  (0) 2010.03.02
Posted by jazzlife
,