Methods
GetMessages | () | → | a(dsus): Messages |
Signals
NewDebugMessage | (d: time, s: domain, u: level, s: message) |
Properties
Enabled | b | Read/Write |
Types
Debug_Level | Enum | u | |
Debug_Message | Struct | (dsus) |
Description
An interface for providing debug messages.
This interface is primarily provided by one object per service, at the path /org/freedesktop/Telepathy/debug.
Methods
GetMessages () → a(dsus): Messages
Returns
- Messages — a(dsus) (Debug_Message_List)
Signals
NewDebugMessage (d: time, s: domain, u: level, s: message)
Parameters
- time — d
- domain — s
- level — u (Debug_Level)
- message — s
Properties
Enabled — b
Types
Debug_Level — u
- Error (0)
- Critical (1)
- Warning (2)
- Message (3)
- Info (4)
- Debug (5)
Debug_Message — (dsus)
- Timestamp — d
- Domain — s
- Level — u (Debug_Level)
- Message — s
Domain of the debug message. This is used to identify the source of debug messages. For example, debug messages from a connection manager could have this Domain struct member be the name of the connection manager, and logs from any helper library could have the name of the helper library.
The domain could also contain a category as to where the log message originated separated by a forward-slash. For example, if a debug message was output in a connection manager called "dummy", in the file-transfer code, this Domain struct member might be dummy/file-transfer.