[android-developers] Re: [Error ] annot find symbol symbol : method log(java.lang.String)

2010-09-22 Thread Atul Raut
Hi I have imported import android.os.Message; still giving error. On Wed, Sep 22, 2010 at 10:24 PM, Atul Raut atul.dr...@gmail.com wrote: Hi am getting this error : cannot find symbol symbol : method log(java.lang.String) when using method : log(some test, +test); I have imported import

Re: [android-developers] Re: [Error ] annot find symbol symbol : method log(java.lang.String)

2010-09-22 Thread Kostya Vasilyev
22.09.2010 20:57, Atul Raut пишет: log(some test, +test); I suppose you could try taking out the comma before the plus sign: log(some test + test); -- Kostya Vasilyev -- WiFi Manager + pretty widget -- http://kmansoft.wordpress.com -- You received this message because you are subscribed to

[android-developers] Re: [Error ] annot find symbol symbol : method log(java.lang.String)

2010-09-22 Thread David Turner
Please avoid cross-posting !! this should go into android-developers only. On Wed, Sep 22, 2010 at 6:57 PM, Atul Raut atul.dr...@gmail.com wrote: Hi I have imported import android.os.Message; still giving error. On Wed, Sep 22, 2010 at 10:24 PM, Atul Raut atul.dr...@gmail.com wrote: Hi am

Re: [android-developers] Re: [Error ] annot find symbol symbol : method log(java.lang.String)

2010-09-22 Thread Atul Raut
Thanks Kostya On Wed, Sep 22, 2010 at 10:31 PM, Kostya Vasilyev kmans...@gmail.comwrote: 22.09.2010 20:57, Atul Raut пишет: log(some test, +test); I suppose you could try taking out the comma before the plus sign: log(some test + test); -- Kostya Vasilyev -- WiFi Manager + pretty

Re: [android-developers] Re: [Error ] annot find symbol symbol : method log(java.lang.String)

2010-09-22 Thread Atul Raut
Hi Kostya , I am trying below and still getting error. *log(Settings onCreate subscription DSDS Enabled = + mSubscription);* -Atul On Wed, Sep 22, 2010 at 10:31 PM, Kostya Vasilyev kmans...@gmail.comwrote: 22.09.2010 20:57, Atul Raut пишет: log(some test, +test); I suppose you could try

Re: [android-developers] Re: [Error ] annot find symbol symbol : method log(java.lang.String)

2010-09-22 Thread Kevin Anthony
The method is Log.d(tag,message); Looking at what you posted, it looks like you need to capitilize the L and put a d,v,i,w,e for debug verbose info warning error On Sep 22, 2010 1:04 PM, David Turner di...@android.com wrote: Please avoid cross-posting !! this should go into android-developers

Re: [android-developers] Re: [Error ] annot find symbol symbol : method log(java.lang.String)

2010-09-22 Thread Atul Raut
*Log.d(LOG_TAG, Settings onCreate subscription atul Enabled = + **mSubsd** )**;* will work. On Wed, Sep 22, 2010 at 10:36 PM, Atul Raut atul.dr...@gmail.com wrote: Hi Kostya , I am trying below and still getting error. *log(Settings onCreate subscription atul Enabled = + mSubsd);* -Atul