Log channels : switch 3.0.0 channels to constant also

Those channels constants were introduced in support/2.7 with 8259a79c
This commit is contained in:
Pierre Goiffon
2021-06-29 11:58:18 +02:00
parent 0cffd567c2
commit 0dc03de7b2
3 changed files with 7 additions and 5 deletions

View File

@@ -540,9 +540,11 @@ class FileLog
*/
class LogChannels
{
const DEADLOCK = 'DeadLock';
const INLINE_IMAGE = 'InlineImage';
const PORTAL = 'portal';
public const CLI = 'CLI';
public const CONSOLE = 'console';
public const DEADLOCK = 'DeadLock';
public const INLINE_IMAGE = 'InlineImage';
public const PORTAL = 'portal';
}