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
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="MongoLog" namespace="" name="MongoLog">
<constant name="NONE" value="0">
<docblock>
<var type="int"/>
</docblock>
</constant>
<constant name="ALL" value="31">
<docblock>
<var type="int"/>
</docblock>
</constant>
<constant name="WARNING" value="1">
<docblock>
<var type="int"/>
</docblock>
</constant>
<constant name="INFO" value="2">
<docblock>
<var type="int"/>
</docblock>
</constant>
<constant name="FINE" value="4">
<docblock>
<var type="int"/>
</docblock>
</constant>
<constant name="RS" value="1">
<docblock>
<var type="int"/>
</docblock>
</constant>
<constant name="POOL" value="1">
<docblock>
<var type="int"/>
</docblock>
</constant>
<constant name="CON" value="2">
<docblock>
<var type="int"/>
</docblock>
</constant>
<constant name="IO" value="4">
<docblock>
<var type="int"/>
</docblock>
</constant>
<constant name="SERVER" value="8">
<docblock>
<var type="int"/>
</docblock>
</constant>
<constant name="PARSE" value="16">
<docblock>
<var type="int"/>
</docblock>
</constant>
<member name="callback" static="false">
<default>null</default>
<docblock>
<var type="int"/>
</docblock>
</member>
<member name="level" static="false">
<default>null</default>
<docblock>
<var type="int"/>
</docblock>
</member>
<member name="module" static="false">
<default>null</default>
<docblock>
<var type="int"/>
</docblock>
</member>
<method name="getCallback" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Gets the previously set callback function"/>
<return type="callable"/>
</docblock>
</method>
<method name="getLevel" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Gets the level(s) currently being logged"/>
<return type="int"/>
</docblock>
</method>
<method name="getModule" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Gets the module(s) currently being logged"/>
<return type="int"/>
</docblock>
</method>
<method name="setCallback" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Sets a callback function to be invoked for events"/>
<return type="void"/>
</docblock>
<parameter name="log_function" optional="false" byreference="false" type="object" class="callable"/>
</method>
<method name="setLevel" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Sets the level(s) to be logged">This function can be used to control logging verbosity and the types of activities that should be logged. The MongoLog level constants may be used with bitwise operators to specify multiple levels.</description>
<return type="void"/>
</docblock>
<parameter name="level" optional="false" byreference="false" type="int"/>
</method>
<method name="setModule" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Sets the module(s) to be logged">This function can be used to set which driver modules should be logged. The MongoLog module constants may be used with bitwise operators to specify multiple modules.</description>
<return type="void"/>
</docblock>
<parameter name="module" optional="false" byreference="false" type="int"/>
</method>
</class>
|