[ Index ] |
PHP Cross Reference of phpBB-3.2.11-deutsch |
[Summary view] [Print] [Text view]
1 /**@constructor*/function Logger(){}Logger.prototype={add:/** 2 * Add a log entry 3 * 4 * @param {!string} type Log type 5 * @param {!string} msg Log message 6 * @param {!Object=} context Log context 7 */ 8 function(type, msg, context){},clear:/** 9 * Clear the log 10 */ 11 function(){},setAttribute:/** 12 * Record the name of the attribute being processed 13 * 14 * @param {!string} attrName 15 */ 16 function(attrName){},setTag:/** 17 * Record the tag being processed 18 * 19 * @param {!Tag} tag 20 */ 21 function(tag){},unsetAttribute:/** 22 * Unset the name of the attribute being processed 23 */ 24 function(){},unsetTag:/** 25 * Unset the tag being processed 26 */ 27 function(){},debug:/** 28 * Add a "debug" type log entry 29 * 30 * @param {!string} msg Log message 31 * @param {!Object=} context Log context 32 */ 33 function(msg, context){},err:/** 34 * Add an "err" type log entry 35 * 36 * @param {!string} msg Log message 37 * @param {!Object=} context Log context 38 */ 39 function(msg, context){},info:/** 40 * Add an "info" type log entry 41 * 42 * @param {!string} msg Log message 43 * @param {!Object=} context Log context 44 */ 45 function(msg, context){},warn:/** 46 * Add a "warn" type log entry 47 * 48 * @param {!string} msg Log message 49 * @param {!Object=} context Log context 50 */ 51 function(msg, context){}}
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Nov 11 20:33:01 2020 | Cross-referenced by PHPXref 0.7.1 |