Currently, when using Huggle to tag a page for speedy deletion, there is no easy way to log the action. I'd like to request that an entry be added to userspace logs, in a manner similar to Twinkle's logging.
Description
Event Timeline
There is - this was requested long time ago and JS extension was written for that purpose see https://www.mediawiki.org/wiki/Huggle/JS
Script: https://www.mediawiki.org/wiki/Huggle/JS/deletion_log.js
Instructions how to install are in first link
@Petrb I started using this (https://en.wikipedia.org/wiki/User:DannyS712/log-speedy) and there should be an extra newline before each entry. Specifically,
huggle_editing.append_text(log, "* Speedy of [[" + edit["Page"]["PageName"] + "]] tags: <nowiki>" + tags + "</nowiki> ~~~~", "Logging speedy deletion");
should be
huggle_editing.append_text(log, "\n* Speedy of [[" + edit["Page"]["PageName"] + "]] tags: <nowiki>" + tags + "</nowiki> ~~~~", "Logging speedy deletion");
To add a new line. Is the source code at https://www.mediawiki.org/wiki/Huggle/JS/deletion_log.js a mirror of the actual code, or where should this be fixed?