Giter VIP home page Giter VIP logo

drupal-8-logger's Introduction

drupal-8-logger

This module over-rides the default drupal loggers with it's own. This is to make the log dir structure a lot more useful. Instead of splitting logs by 'system.log' or 'debug.log' etc. it now does it by date (similar to FuelPHP).

The standard way to log in drupal would be to inject the class \Drupal\surflogger\LoggerService and then use the logging methods such as:

$this->log->error("Message here", ['array_key' => 'array_value']);

This would add your log message to a file in (for example): DRUPAL_ROOT/log/2017/12/31.log.

The module depends on the following; installing through composer will fetch these libraries if they dont already exist

"monolog/monolog"
"psr/log"

how to use

use Drupal\surflogger\LoggerService;
use Symfony\Component\DependencyInjection\ContainerInterface;

create a protected var

protected $log;

use di to add to constructor by

public function __construct(
  .....,
  LoggerService $loggerService
){
  ... = ...,
  $this->log = $loggerService;
}

dont forget to add to create

public static function create(ContainerInterface $container){
  return new static(
    ........,
    $container->get('surf.logger')    
  );
}

drupal-8-logger's People

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.