Translate extension for MediaWiki
 
Loading...
Searching...
No Matches
LogNames.php
1<?php
2declare( strict_types = 1 );
3
4namespace MediaWiki\Extension\Translate;
5
13final class LogNames {
15 public const MAIN = 'Translate';
16
18 public const GROUP_SYNCHRONIZATION = 'Translate.GroupSynchronization';
19
21 public const TRANSLATION_SERVICES = 'translationservices';
22
24 public const MESSAGE_BUNDLE = 'Translate.MessageBundle';
25
27 public const GROUP_SUBSCRIPTION = 'Translate.MessageGroupSubscription';
28
30 public const JOBS = 'Translate.Jobs';
31
33 public const ELASTIC_SEARCH_TTMSERVER = 'ElasticSearchTtmServer';
34}
Constants for log channel names used in this extension.
Definition LogNames.php:13
const TRANSLATION_SERVICES
Channel for translation services.
Definition LogNames.php:21
const GROUP_SYNCHRONIZATION
Channel for message group synchronization.
Definition LogNames.php:18
const MAIN
Default log channel for the extension.
Definition LogNames.php:15
const GROUP_SUBSCRIPTION
Channel for message group subscription.
Definition LogNames.php:27
const MESSAGE_BUNDLE
Channel for message bundle code.
Definition LogNames.php:24
const ELASTIC_SEARCH_TTMSERVER
Channel for ElasticSearchTtmServer.
Definition LogNames.php:33