aboutsummaryrefslogtreecommitdiffstats
path: root/extensions/Debug.xml
blob: 96c4cfb7d87b717ba98f5df8e0fa59b42a428fc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" ?>
<node name="/Debug"
  xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
  <tp:copyright>Copyright (C) 2009 Collabora Ltd.</tp:copyright>
  <tp:license xmlns="http://www.w3.org/1999/xhtml">
    <p>This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.</p>

<p>This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.</p>

<p>You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</p>
  </tp:license>
  <interface name="org.freedesktop.Telepathy.Debug">

    <tp:docstring xmlns="http://www.w3.org/1999/xhtml">
      <p>An interface for providing debug messages.

         This interface is primarily provided by one object per
         service, at the path <tt>/org/freedesktop/Telepathy/debug</tt>.
      </p>
    </tp:docstring>

    <property name="Enabled" type="b" access="readwrite">
      <tp:docstring xmlns="http://www.w3.org/1999/xhtml">
        <p>TRUE if the NewDebugMessage signal should be emitted when a new
           debug message is generated.</p>
      </tp:docstring>
    </property>

    <method name="GetMessages">
      <tp:docstring xmlns="http://www.w3.org/1999/xhtml">
        <p>Retrieve buffered debug messages.</p>
      </tp:docstring>

      <arg direction="out" name="messages" type="a(dsus)">
         <tp:docstring>
          A list of timestamped debug messages.
        </tp:docstring>
      </arg>
    </method>

    <signal name="NewDebugMessage" tp:name-for-bindings="New_Debug_Message">
      <tp:docstring>
        Emitted when a debug messages is generated if the Enabled property is
        set.
      </tp:docstring>

      <arg name="time" type="d">
        <tp:docstring>
          Message timestamp
        </tp:docstring>
      </arg>
      <arg name="domain" type="s">
    <tp:docstring>
      Message domain
    </tp:docstring>
      </arg>
      <arg name="level" type="u" tp:type="Debug_Level">
    <tp:docstring>
      Message level
    </tp:docstring>
      </arg>
      <arg name="message" type="s">
        <tp:docstring>
          Message
        </tp:docstring>
      </arg>
    </signal>

    <tp:enum name="Debug_Level" type="u">
      <tp:enumvalue suffix="Error" value="0">
    <tp:docstring>
      error
    </tp:docstring>
      </tp:enumvalue>
      <tp:enumvalue suffix="Critical" value="1">
    <tp:docstring>
      criticla
    </tp:docstring>
      </tp:enumvalue>
      <tp:enumvalue suffix="Warning" value="2">
    <tp:docstring>
      warning
    </tp:docstring>
      </tp:enumvalue>
      <tp:enumvalue suffix="Message" value="3">
    <tp:docstring>
      message
    </tp:docstring>
      </tp:enumvalue>
      <tp:enumvalue suffix="Info" value="4">
    <tp:docstring>
      info
    </tp:docstring>
      </tp:enumvalue>
      <tp:enumvalue suffix="Debug" value="5">
    <tp:docstring>
      debug
    </tp:docstring>
      </tp:enumvalue>
    </tp:enum>

  </interface>
</node>
<!-- vim:set sw=2 sts=2 et ft=xml: -->