forked from wikimedia/mediawiki
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathLocalSettings.Debug.php
More file actions
218 lines (217 loc) · 14.8 KB
/
LocalSettings.Debug.php
File metadata and controls
218 lines (217 loc) · 14.8 KB
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
<?php
/**
* A logger exporting logs to a certain channel is defined using
* \MediaWiki\Logger\LoggerFactory::getInstance( 'ChannelName' ).
* Legacy code might also use wfDebugLog( 'ChannelName', 'Message' ).
*
* We try to collect all channel names here, though this is still a
* manually-collected non-exhaustive list that may not be up-to-date.
*
* In settings.d/000-Logging.php, $wgMWLoggerDefaultSpi is handled
* using those bsgDebugLogGroups as below.
*
* The destination of a log can be either a file like $IP/cache/debug.log,
* or a stream, e.g php://stdout or php://stderr.
*/
#$GLOBALS['bsgDebugLogGroups']['AbuseFilter'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ActionFactory'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ActorStore'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['api'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['api-feature-usage'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['api-request'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['api-warning'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ArchiveImport'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ArticlePreviewCapture'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['authentication'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['authevents'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['autoloader'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['baz'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlockManager'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlueSpice'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['bluespice'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlueSpiceChecklist'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['bluespice-deprecations'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['bluespicediscovery'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlueSpiceExtendedSearch-string'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlueSpiceExtendedSearch-text'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlueSpiceFlaggedRevsConnector'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlueSpiceGroupManager'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlueSpiceInstanceStatus'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlueSpiceReaders'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlueSpiceSocial'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlueSpiceSocialProfile'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BlueSpiceWikiFarm'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BS::Bookshelf'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BS::Reminder'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BS::UEModuleDOCX'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BS::UEModuleHTML'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BS::UEModulePDF'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BS::UniversalExport'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BSBookshelf'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BSExtendedSearch'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BsRoleSystem'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BSSocial'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['BSUsageTracker'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Bug58676'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['cache-cookies'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['captcha'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['checkUsernames'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['CollabPads'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ContentHandler'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ContentProvisioner'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ContentProvisioner_Sync'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ContentTransfer'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['cookie'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['CreateUserPage'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['csp'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['csp-report-only'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['DatabaseBlockStore'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['DBConnection'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['DBPerformance'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['DBQuery'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['DBReplication'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['DeferredUpdates'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['diff'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['DuplicateParse'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['dynamic-config'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['EditConflict'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['EditConstraintRunner'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['editpage'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['EmbedVideo'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['EventBus'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['exception'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['exception-json'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['exec'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['exif'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['export'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ExternalStore'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['fileconcatenate'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['FileOperation'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['fileupload'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['FlaggedRevisions'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['foo'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['formatnum'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['gitinfo'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['GlobalTitleFail'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['header'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['headertabs'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['headers-sent'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['HitCounters'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['http'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['HttpError'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['imagemove'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['img_auth'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ImportOfficeFiles'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ImportOfficeFiles_RemoveOrphanedDirectories'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ImportOfficeFiles_UI'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['iptc'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['IPTC'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['JobExecutor'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['JobQueueFederated'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['JobQueueRedis'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['languageconverter'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['LDAPAuthorization'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['LDAPAuthorization2'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['LDAPGroups'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['LDAPProvider'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['LDAPSyncAll'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['LDAPUserInfo'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['LinkBatch'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['LinkCache'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['LocalFile'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['localisation'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['LockManager'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['logentry'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['logging'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['login'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Math'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']["MediaWikiSite"] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['MessageCache'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['message-format'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Metrics'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Mime'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['MWStakeComponentManifestRegistry'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['NameTableSqlStore'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['NameTableStoreFactory'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['notifications'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['OAuth'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['objectcache'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['OldRevisionImporter'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['OpenIDConnect'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['output'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['parser'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Parser'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ParserCache'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Parsoid'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['permissionmanager'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Pingback'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['PluggableAuth'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['poolcounter'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['popups'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['preferences'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Preprocessor'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['processmanager-code-executer'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ProcessRunner'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['profiler'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['ratelimit'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['RCCacheEntryFactory'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['recentchanges'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['RecursiveLinkPurge'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['RedirectedPosts'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['redis'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['RefreshLinksJob'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Renameuser'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['replication'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['resourceloader'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['RevertedTagUpdate'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['RevisionStore'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['RSS'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['rssfeeder'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['runJobs'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['runjobs-trigger-runner'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['RunSingleJobHandler'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['SavePgae'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['SaveParse'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Scribunto'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['search'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['SecondaryDataUpdate'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']["security"] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['session'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['session-ip'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Settings'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Setup'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['SimpleSAMLphp'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['slow-parse'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['slow-parsoid'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['smw'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['SpamBlacklist'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['squid'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['stabilization'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['StashEdit'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['textextracts'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['throttler'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['thumbnail'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Timing'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['TitleBlacklist'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['TitleBlacklist-cache'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['tocreate'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['tomutate'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['TrackingCategories'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['UndeletePage'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['UploadRevisionImporter'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['UserCache'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['UserGroupManager'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['UserNameUtils'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['UserOptionsManager'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['VEForAll'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['visualeditor'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['VisualEditor'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['WebDAV'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['WebP'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['wfDebug'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['wfLogDBError'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['Widgets'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['wikipage'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['workflows'] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']["WSSlots"] = "$IP/cache/debug.log";
#$GLOBALS['bsgDebugLogGroups']['XMP'] = "$IP/cache/debug.log";