/home/techb158/exp.abdallabala.com/vendor/monolog/monolog/src/Monolog/Formatter
NameSizeModeActions
ChromePHPFormatter.php20430644editdlrm
ElasticaFormatter.php18370644editdlrm
FlowdockFormatter.php25480644editdlrm
FluentdFormatter.php21890644editdlrm
FormatterInterface.php7870644editdlrm
GelfMessageFormatter.php44080644editdlrm
HtmlFormatter.php46200644editdlrm
JsonFormatter.php52830644editdlrm
LineFormatter.php55730644editdlrm
LogglyFormatter.php13220644editdlrm
LogstashFormatter.php53070644editdlrm
MongoDBFormatter.php32980644editdlrm
NormalizerFormatter.php51870644editdlrm
ScalarFormatter.php10400644editdlrm
WildfireFormatter.php32540644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php (1322B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Monolog\Formatter; /** * Encodes message information into JSON in a format compatible with Loggly. * * @author Adam Pancutt */ class LogglyFormatter extends JsonFormatter { /** * Overrides the default batch mode to new lines for compatibility with the * Loggly bulk API. * * @param int $batchMode */ public function __construct($batchMode = self::BATCH_MODE_NEWLINES, $appendNewline = false) { parent::__construct($batchMode, $appendNewline); } /** * Appends the 'timestamp' parameter for indexing by Loggly. * * @see https://www.loggly.com/docs/automated-parsing/#json * @see \Monolog\Formatter\JsonFormatter::format() */ public function format(array $record) { if (isset($record["datetime"]) && ($record["datetime"] instanceof \DateTime)) { $record["timestamp"] = $record["datetime"]->format("Y-m-d\TH:i:s.uO"); // TODO 2.0 unset the 'datetime' parameter, retained for BC } return parent::format($record); } }