PHPackages                             tolawho/loggy - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. tolawho/loggy

AbandonedArchivedLibrary[Logging &amp; Monitoring](/categories/logging)

tolawho/loggy
=============

Laravel 5 log with multiple channel

v1.0.6(6y ago)2844.0k7MITPHP

Since Mar 31Pushed 6y ago2 watchersCompare

[ Source](https://github.com/tolawho/loggy)[ Packagist](https://packagist.org/packages/tolawho/loggy)[ RSS](/packages/tolawho-loggy/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (9)Used By (0)

Supports [Laravel 5](http://laravel.com/) writing separate log files with multiple channel.

[![Latest Stable Version](https://camo.githubusercontent.com/53e61f4d0701a3682889addc59c5b88cced1dda73ae48c697e3a585d7c419058/68747470733a2f2f706f7365722e707567782e6f72672f746f6c6177686f2f6c6f6767792f762f737461626c65)](https://packagist.org/packages/tolawho/loggy)[![Total Downloads](https://camo.githubusercontent.com/e0f0746bb98f733dfcc72c7432cd1eecf3c1e2c6ff643a0ed9cb751bf2fdb58f/68747470733a2f2f706f7365722e707567782e6f72672f746f6c6177686f2f6c6f6767792f646f776e6c6f616473)](https://packagist.org/packages/tolawho/loggy)[![License](https://camo.githubusercontent.com/3e772194405ce0ed632698c72d12c791becc86184e16c7ea7b5d481fc8c6c697/68747470733a2f2f706f7365722e707567782e6f72672f746f6c6177686f2f6c6f6767792f6c6963656e7365)](https://packagist.org/packages/tolawho/loggy)

Requirements
============

[](#requirements)

Loggy &gt;= 1.0.0 requires Laravel 5.

Installation
============

[](#installation)

Require this package with Composer

```
composer require tolawho/loggy
```

Quick Start
===========

[](#quick-start)

Once Composer has installed or updated your packages you need to register `Loggy` with Laravel itself. Open up `config/app.php` and find the providers key, towards the end of the file, and add `Tolawho\Loggy\ServiceProvider:class`, to the end:

```
'providers' => [
    ...
    Tolawho\Loggy\ServiceProvider::class,
],
```

Now find the aliases key, again towards the end of the file, and add `'Loggy' => Tolawho\Loggy\Facades\Loggy::class`, to have easier access to the `Loggy`:

```
'aliases' => [
    ...
    'Loggy' => Tolawho\Loggy\Facades\Loggy::class,
],
```

Now that you have both of those lines added to `config/app.php` we will use `Artisan` to publish the new config file:

```
php artisan vendor:publish --provider="Tolawho\Loggy\ServiceProvider"
```

The example config:

```
