Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

NullLogger.js

Zuletzt modifiziert: 02.04.2025, 15:03 - Dateigröße: 1.21 KiB


01  /**@constructor*/function Logger(){}Logger.prototype={add:/**
02  * Add a log entry
03  *
04  * @param  {string}   type    Log type
05  * @param  {string}   msg     Log message
06  * @param  {!Object=} context Log context
07  */
08  function(type, msg, context){},clear:/**
09  * 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){}};