mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Added two missing constants.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@321558 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
dff0dee9c8
commit
56beb5f328
1 changed files with 35 additions and 8 deletions
|
@ -102,6 +102,16 @@ MongoLog::setModule(MongoLog::RS|MongoLog::POOL);
|
|||
<type>int</type>
|
||||
<varname linkend="mongolog.constants.io">MongoLog::IO</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>const</modifier>
|
||||
<type>int</type>
|
||||
<varname linkend="mongolog.constants.io">MongoLog::SERVER</varname>
|
||||
</fieldsynopsis>
|
||||
<fieldsynopsis>
|
||||
<modifier>const</modifier>
|
||||
<type>int</type>
|
||||
<varname linkend="mongolog.constants.io">MongoLog::PARSE</varname>
|
||||
</fieldsynopsis>
|
||||
|
||||
<classsynopsisinfo role="comment">Fields</classsynopsisinfo>
|
||||
<fieldsynopsis>
|
||||
|
@ -195,12 +205,20 @@ MongoLog::setModule(MongoLog::RS|MongoLog::POOL);
|
|||
These constants can be used by <function>MongoLog::setModule</function>.
|
||||
</para>
|
||||
<variablelist>
|
||||
<varlistentry xml:id="mongolog.constants.rs">
|
||||
<term><constant>MongoLog::RS</constant></term>
|
||||
<varlistentry xml:id="mongolog.constants.io">
|
||||
<term><constant>MongoLog::IO</constant></term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Log replica set activity. Failovers, pinging, chosing secondaries to
|
||||
read from, etc.
|
||||
Logs traffic to/from the database. Unless your program is trivial, this
|
||||
will create an enormous number of log messages.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry xml:id="mongolog.constants.parse">
|
||||
<term><constant>MongoLog::PARSE</constant></term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Log server string parsing.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -213,12 +231,21 @@ MongoLog::setModule(MongoLog::RS|MongoLog::POOL);
|
|||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry xml:id="mongolog.constants.io">
|
||||
<term><constant>MongoLog::IO</constant></term>
|
||||
<varlistentry xml:id="mongolog.constants.rs">
|
||||
<term><constant>MongoLog::RS</constant></term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Logs traffic to/from the database. Unless your program is trivial, this
|
||||
will create an enormous number of log messages.
|
||||
Log replica set activity. Failovers, pinging, chosing secondaries to
|
||||
read from, etc.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry xml:id="mongolog.constants.server">
|
||||
<term><constant>MongoLog::SERVER</constant></term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Log server status changes. Detecting primary, secondary and
|
||||
duplication detection.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
|
Loading…
Reference in a new issue