1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-23 09:36:11 +02:00

Merge remote-tracking branch 'gmponos/add_visibility_to_constants'

This commit is contained in:
Jordi Boggiano
2018-11-29 19:41:58 +01:00
20 changed files with 45 additions and 45 deletions

View File

@@ -22,9 +22,9 @@ use Monolog\Logger;
class SqsHandler extends AbstractProcessingHandler
{
/** 256 KB in bytes - maximum message size in SQS */
const MAX_MESSAGE_SIZE = 262144;
public const MAX_MESSAGE_SIZE = 262144;
/** 100 KB in bytes - head message size for new error log */
const HEAD_MESSAGE_SIZE = 102400;
public const HEAD_MESSAGE_SIZE = 102400;
/** @var SqsClient */
private $client;