Android Question Not writing to log

siddsg

Member
Licensed User
Longtime User
While debugging, I noticed that its not writing to log.
Is there some setting I am missing?
Am using the exact same code as in the Phone documentation for reading phone messages...

Thanks!

B4X:
Dim SmsMessages1 As SmsMessagesDim List1 AsList
List1 = SmsMessages1.GetAllSince(DateTime.Add(DateTime.Now, 0, 0, -7))For i = 0To List1.Size - 1Dim Sms As Sms
Sms = List1.Get(i)
Log(Sms)Next
 

siddsg

Member
Licensed User
Longtime User
Its fine...I got the solution.

Got it working after clicking the 'Connect' button under the logs!

Thank you!
 
Upvote 0
Top