From 3d74d961abe1211b83e5a6f49c44e0f788c4c11b Mon Sep 17 00:00:00 2001 From: Julien Breux Date: Tue, 28 Jun 2016 18:46:44 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=98=B1=20Remove=20const?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Monolog/Handler/LogmaticHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Monolog/Handler/LogmaticHandler.php b/src/Monolog/Handler/LogmaticHandler.php index 043d89e8..e78d3cf2 100644 --- a/src/Monolog/Handler/LogmaticHandler.php +++ b/src/Monolog/Handler/LogmaticHandler.php @@ -54,7 +54,7 @@ class LogmaticHandler extends SocketHandler $endpoint = $useSSL ? 'ssl://api.logmatic.io:10515' : 'api.logmatic.io:10514'; $endpoint .= '/v1/'; - parent::__construct($endpoint . self::LOGMATIC_URI, $level, $bubble); + parent::__construct($endpoint, $level, $bubble); $this->logToken = $token; $this->hostname = $hostname;