Availability: S60.
The logs offers generic access to the phone's log. Via logs's API it is possible to access, for example, the list of received calls or the list of sms received. At this stage, it is only possible to read logs.
All of the accessor functions return a list of dictionaries containing the log events. The first item on the list is the latest event.
Each dictionary has the following entries:
number
: The (phone) number associated with the log event
name
description
: A description of the event
direction
: The direction associated with the event (i.e. whether incoming or outgoing)
status
: Event status
subject
id
: The event's id
contact
duration
duration type
flags
link
time
: The time associated with the event as a unix timestamp.
data
The current log types are currently supported:
'call'
'sms'
'data'
'fax'
'email'
'scheduler'
For those functions providing an optional mode parameter, the default mode is currently set to
'in'
. mode can take one of the following values:
'in'
'out'
'fetched'
'missed'
'in_alt'
'out_alt'