File: Zend_Log-Overview.xml

package info (click to toggle)
zendframework 1.12.9%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 133,584 kB
  • sloc: xml: 1,311,829; php: 570,173; sh: 170; makefile: 125; sql: 121
file content (326 lines) | stat: -rw-r--r-- 12,754 bytes parent folder | download | duplicates (2)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
<?xml version="1.0" encoding="UTF-8"?>
<!-- Reviewed: no -->
<sect1 id="zend.log.overview">
    <title>Overview</title>

    <para>
        <classname>Zend_Log</classname> is a component for general purpose logging.
        It supports multiple log backends, formatting messages sent to the log,
        and filtering messages from being logged. These functions are divided
        into the following objects:

        <itemizedlist>
            <listitem>
                <para>
                    A Log (instance of <classname>Zend_Log</classname>) is the object that your
                    application uses the most. You can have as many Log objects as you
                    like; they do not interact. A Log object must contain at
                    least one Writer, and can optionally contain one or more Filters.
                </para>
            </listitem>

            <listitem>
                <para>
                    A Writer (inherits from <classname>Zend_Log_Writer_Abstract</classname>) is
                    responsible for saving data to storage.
                </para>
            </listitem>

            <listitem>
                <para>
                    A Filter (implements <classname>Zend_Log_Filter_Interface</classname>)
                    blocks log data from being saved. A filter may be applied to an
                    individual Writer, or to a Log where it is applied before all
                    Writers. In either case, filters may be chained.
                </para>
            </listitem>

            <listitem>
                <para>
                    A Formatter (implements <classname>Zend_Log_Formatter_Interface</classname>)
                    can format the log data before it is written by a Writer. Each
                    Writer has exactly one Formatter.
                </para>
            </listitem>
        </itemizedlist>
    </para>

    <sect2 id="zend.log.overview.creating-a-logger">
        <title>Creating a Log</title>

        <para>
            To get started logging, instantiate a Writer and then pass it to a Log instance:
        </para>

        <programlisting language="php"><![CDATA[
$logger = new Zend_Log();
$writer = new Zend_Log_Writer_Stream('php://output');

$logger->addWriter($writer);
]]></programlisting>

        <para>
            It is important to note that the Log must
            have at least one Writer. You can add any number of Writers using the
            Log's <methodname>addWriter()</methodname> method.
        </para>

        <para>
            Alternatively, you can pass a Writer directly to constructor of Log as
            a shortcut:
        </para>

        <programlisting language="php"><![CDATA[
$writer = new Zend_Log_Writer_Stream('php://output');
$logger = new Zend_Log($writer);
]]></programlisting>

        <para>
            The Log is now ready to use.
        </para>
    </sect2>

    <sect2 id="zend.log.overview.logging-messages">
        <title>Logging Messages</title>

        <para>
            To log a message, call the <methodname>log()</methodname> method of a Log instance
            and pass it the message with a corresponding priority:
        </para>

        <programlisting language="php"><![CDATA[
$logger->log('Informational message', Zend_Log::INFO);
]]></programlisting>

        <para>
            The first parameter of the <methodname>log()</methodname> method is a string
            <property>message</property> and the second parameter is an integer
            <property>priority</property>. The priority must be one of the priorities recognized by
            the Log instance. This is explained in the next section.
        </para>

        <para>
            A shortcut is also available. Instead of calling the <methodname>log()</methodname>
            method, you can call a method by the same name as the priority:
        </para>

        <programlisting language="php"><![CDATA[
$logger->log('Informational message', Zend_Log::INFO);
$logger->info('Informational message');

$logger->log('Emergency message', Zend_Log::EMERG);
$logger->emerg('Emergency message');
]]></programlisting>
    </sect2>

    <sect2 id="zend.log.overview.destroying-a-logger">
        <title>Destroying a Log</title>

        <para>
            If the Log object is no longer needed, set the variable containing it to
            <constant>NULL</constant> to destroy it. This will automatically call the
            <methodname>shutdown()</methodname> instance method of each attached Writer before
            the Log object is destroyed:
        </para>

        <programlisting language="php"><![CDATA[
$logger = null;
]]></programlisting>

        <para>
            Explicitly destroying the log in this way is optional and is performed
            automatically at <acronym>PHP</acronym> shutdown.
        </para>
    </sect2>

    <sect2 id="zend.log.overview.builtin-priorities">
        <title>Using Built-in Priorities</title>

        <para>
            The <classname>Zend_Log</classname> class defines the following priorities:
        </para>

        <programlisting language="php"><![CDATA[
EMERG   = 0;  // Emergency: system is unusable
ALERT   = 1;  // Alert: action must be taken immediately
CRIT    = 2;  // Critical: critical conditions
ERR     = 3;  // Error: error conditions
WARN    = 4;  // Warning: warning conditions
NOTICE  = 5;  // Notice: normal but significant condition
INFO    = 6;  // Informational: informational messages
DEBUG   = 7;  // Debug: debug messages
]]></programlisting>

        <para>
            These priorities are always available, and a convenience method of the same name
            is available for each one.
        </para>

        <para>
            The priorities are not arbitrary. They come from the BSD syslog protocol,
            which is described in <ulink url="http://tools.ietf.org/html/rfc3164">RFC-3164</ulink>.
            The names and corresponding priority numbers are also
            compatible with another <acronym>PHP</acronym> logging system,
            <ulink url="http://pear.php.net/package/log">PEAR Log</ulink>,
            which perhaps promotes interoperability between it and <classname>Zend_Log</classname>.
        </para>

        <para>
            Priority numbers descend in order of importance. <constant>EMERG</constant> (0)
            is the most important priority. <constant>DEBUG</constant> (7) is the least
            important priority of the built-in priorities. You may define priorities
            of lower importance than <constant>DEBUG</constant>. When
            selecting the priority for your log message, be aware of this priority
            hierarchy and choose appropriately.
        </para>
    </sect2>

    <sect2 id="zend.log.overview.user-defined-priorities">
        <title>Adding User-defined Priorities</title>

        <para>
            User-defined priorities can be added at runtime using the Log's
            <methodname>addPriority()</methodname> method:
        </para>

        <programlisting language="php"><![CDATA[
$logger->addPriority('FOO', 8);
]]></programlisting>

        <para>
            The snippet above creates a new priority, <constant>FOO</constant>, whose
            value is '8'. The new priority is then available for logging:
        </para>

        <programlisting language="php"><![CDATA[
$logger->log('Foo message', 8);
$logger->foo('Foo Message');
]]></programlisting>

        <para>
            New priorities cannot overwrite existing ones.
        </para>
    </sect2>

    <sect2 id="zend.log.overview.understanding-fields">
        <title>Understanding Log Events</title>

        <para>
            When you call the <methodname>log()</methodname> method or one of its shortcuts, a
            log event is created. This is simply an associative array with data
            describing the event that is passed to the writers. The following keys
            are always created in this array: <property>timestamp</property>,
            <property>message</property>, <property>priority</property>, and
            <property>priorityName</property>.
        </para>

        <para>
            The creation of the <property>event</property> array is completely transparent.
            However, knowledge of the <property>event</property> array is required for adding an
            item that does not exist in the default set above.
        </para>

        <para>
            To add a new item to every future event, call the
            <methodname>setEventItem()</methodname> method giving a key and a value:
        </para>

        <programlisting language="php"><![CDATA[
$logger->setEventItem('pid', getmypid());
]]></programlisting>

        <para>
            The example above sets a new item named <property>pid</property> and populates
            it with the PID of the current process. Once a new item has been
            set, it is available automatically to all writers along with all of the
            other data event data during logging. An item can be overwritten at any
            time by calling the <methodname>setEventItem()</methodname> method again.
        </para>

        <para>
            Setting a new event item with <methodname>setEventItem()</methodname> causes the
            new item to be sent to all writers of the logger. However, this does
            not guarantee that the writers actually record the item. This is
            because the writers won't know what to do with it unless a formatter
            object is informed of the new item. Please see the section on Formatters
            to learn more.
        </para>
    </sect2>

    <sect2 id="zend.log.overview.as-errorHandler">
        <title>Log PHP Errors</title>

        <para>
            <classname>Zend_Log</classname> can also be used to log <acronym>PHP</acronym> errors.
            Calling <methodname>registerErrorHandler()</methodname> will add
            <classname>Zend_Log</classname> before the current error handler, and will pass the
            error along as well.
        </para>

        <para>
            Zend_Log events from PHP errors have the additional fields matching
            <methodname>handler  ( int $errno  , string $errstr  [, string $errfile  [, int
                $errline  [, array $errcontext  ]]] )</methodname> from <ulink
                url="http://us3.php.net/manual/en/function.set-error-handler.php">set_error_handler</ulink>
        </para>

        <table id="zend.log.overview.as-errorHandler.properties.table-1">
            <title>Additional fields for Zend_Log events from PHP errors</title>

            <tgroup cols="3">
                <thead>
                    <row>
                        <entry>Name</entry>
                        <entry>Error Handler Parameter</entry>
                        <entry>Description</entry>
                    </row>
                </thead>

                <tbody>
                    <row>
                        <entry>message</entry>
                        <entry>errstr</entry>
                        <entry>Contains the error message, as a string.</entry>
                    </row>

                    <row>
                        <entry>errno</entry>
                        <entry>errno</entry>
                        <entry>Contains the level of the error raised, as an integer.</entry>
                    </row>

                    <row>
                        <entry>file</entry>
                        <entry>errfile</entry>

                        <entry>
                            Contains the filename that the error was raised in, as a string.
                        </entry>
                    </row>

                    <row>
                        <entry>line</entry>
                        <entry>errline</entry>

                        <entry>
                            Contains the line number the error was raised at, as an integer.
                        </entry>
                    </row>

                    <row>
                        <entry>context</entry>
                        <entry>errcontext</entry>

                        <entry>
                            (optional) An array that points to the active symbol table at the point
                            the error occurred. In other words, errcontext  will contain an array of
                            every variable that existed in the scope the error was triggered in.
                            User error handler must not modify error context.
                        </entry>
                    </row>

                </tbody>
            </tgroup>
        </table>
    </sect2>
</sect1>