MediaWiki extension CategoryWatch

Clone this repo:
  1. 3dc80b9 Localisation updates from https://translatewiki.net. by Translation updater bot · 14 hours ago master
  2. a60a8f9 build: Updating eslint-config-wikimedia to 0.28.2 by libraryupgrader · 2 weeks ago
  3. 03a41d1 build: Updating braces to 3.0.3 by libraryupgrader · 3 weeks ago
  4. 7b1f5d2 build: Updating eslint-config-wikimedia to 0.28.0 by libraryupgrader · 4 weeks ago
  5. 07fe733 build: Updating grunt-banana-checker to 0.13.0 by libraryupgrader · 7 weeks ago

CategoryWatch

Main development Git repository on Gerrit: https://gerrit.wikimedia.org/r/#/admin/projects/mediawiki/extensions/CategoryWatch

Here is the Phabricator Diffusion: https://phabricator.wikimedia.org/diffusion/ECWA/

Mirror on GitHub: https://github.com/seanchen/CategoryWatch

MediaWiki extension CategoryWatch, https://www.mediawiki.org/wiki/Extension:CategoryWatch

Initial commit is forked from commit 4ad0f63: https://github.com/OrganicDesign/extensions/tree/4ad0f631438ed16c05edfa08e65e0de00b4b1342/MediaWiki-Legacy/CategoryWatch

How to debug

3 simple steps to debug an extension.

  • using function wfDebugLog to log message, using the extension name as the group. for example:
wfDebugLog('CategoryWatch', 'loading extension...');
  • enable debug log for the group, bascially the extension name. set the log file name.
# in file LocalSettings.php
$wgDebugLogGroups['CategoryWatch'] = '/path/to/log/mw-categorywatch.log';
  • tail the log file to debug...