Skip to content

This repo contains a canonical implementation of an Adapter for standard logger of PhalconPHP framework. Contributions are more than welcome!

License

Notifications You must be signed in to change notification settings

ivastly/phalconphp-logger-adapters

Repository files navigation

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

About

This repo contains a canonical implementation of an Adapter for standard logger of PhalconPHP framework. Contributions are more than welcome!

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages