In order to maintain the meta spam blacklist, I need access to the 'logging' table in the database where log_type is 'spamblacklist'.
This was possible for several months at tool server:
$ sql dewiki MariaDB [dewiki_p]> SELECT `log_timestamp`, `log_namespace`, `log_title`, `log_comment`, `log_params`, `log_user_text` FROM `logging` WHERE `log_type` = 'spamblacklist' AND log_params regexp '(?:some spam url part)' ORDER BY `log_timestamp`;
But now those table entries seem to be invisible, so
SELECT DISTINCT log_type FROM `logging`;
does not list 'spamblacklist'.
I know that this information should be visible to admins only, but being admin at meta I need this information to maintain the global SBL and get rid of old entries.
A more detailed example, why I need access can be seen at https://meta.wikimedia.org/wiki/Talk:Spam_blacklist#Expert_maintenance (at that time I had success to this information)
What can we do about this?