biganfa/phalconphp-logger-adapters

Miscellaneous Adapters For PhalconPHP standard logger

v2.0.0 2021-05-13 17:24 UTC

README

wtfpl

phalconphp-logger-adapters

This repo contains a canonical demo implementation of an Adapter for standard logger of PhalconPHP framework. Consider it more like a Proof Of Concept, than a production-ready code. Contributions are more than welcome (see CONTRIBUTE.md)

Tested with PhalconPHP version 3.2.4

Requirements

  • php >= 7.0
  • phalconPHP >= 3.2.4

How to use

Just install via composer

composer require biganfa/phalconphp-logger-adapters:^1.0

And configure your Phalcon's built-in logger appropriately

//somewhere in services.php

$di->setShared('logger', function() use($config) {

   $logger = new \Phalcon\Logger\Multiple();
   $logger->push(new LogglyAdapter(new LogglyClient()));
   $logger->push(new TelegramAdapter(new TelegramClient()));
}

What is included

  • Telegram Telegram logger adapter for PhalconHPP
  • Loggly Loggly logger adapter for PhalconPHP

LICENSE information

see LICENSE.md