Search code examples
androideclipseddms

Line number in android log util


Is there any way to print file line number with android Log ?

enter image description here


Solution

  • for getting line number `

    public static int getLineNumber() {
        return Thread.currentThread().getStackTrace()[2].getLineNumber();
    }
    or 
    Thread.currentThread().getStackTrace()[2].getLineNumber()
     in Log()
    

    ` try it will help u....