hello,
my question is: how can i get the wap logs, send package and receive package???
like incoming call or outcomming call
thanks
hello,
my question is: how can i get the wap logs, send package and receive package???
like incoming call or outcomming call
thanks
Try this:
See what is the result you are getting......Code:import logs print logs.data_logs()
i've tested that :
Code:import logs for typ in ['call','sms','data','fax','email','scheduler']: data = logs.log_data(typ) print "\n %s logs: "%typ if len(data) > 0: print len(data), data[0] else: print 0
and for 'data', 'email', 'fax' and 'sheduler' i have 0
Use
Best regards,Code:data = logs.data_logs()
ok, i've tested that:
and i have 0Code:import logs data = logs.data_logs() ; print len(data) for val in data: print len(val)
do you know if there is a file in nokia phone where the log is writting? so we can read this file with python(if is possible, i'm a beginner in python)