loggfy/connect

A Laravel package, helps to log into loggfy.com

0.1 2018-03-08 10:53 UTC

This package is auto-updated.

Last update: 2024-09-22 02:11:45 UTC


README

Installation

Add the following to your composer.json and run composer update

{
    "require": {
        "loggfy/connect": "dev-master"
    }
}

Don't forget to dump composer autoload

composer dump-autoload

Open your config/app.php add following line in the providers array

Loggfy\Connect\LoggfyServiceProvider::class

Then in your bootstrap/app.php add / update your Monolog configuration.

$app->configureMonologUsing(function ($monolog) {
    $monolog->pushHandler(new \Loggfy\Connect\Loggfy());
});

Run following command to publish migration and configuration

 php artisan vendor:publish --provider="Loggfy\Connect\LoggfyServiceProvider"

Thats all now start to log the events.

Open config/loggfy.php file and update the settings.

USAGE

Do not fotget to include Log to your class

use Log;

And add log entry

Log::info('user.register', ['message' => 'User Registration Controller', 'id' => 23, 'name' => 'John Doe', 'email' => 'john@example.com']);

Browse to [loggfy.com]http://panel.loggfy.com, login to your account and check your log entry exists there.

Links

loggfy.com