2019-11-27 22:19:20 +08:00
|
|
|
<?php
|
|
|
|
|
2019-12-13 04:07:35 +08:00
|
|
|
namespace App\Services\Installer;
|
2019-11-27 22:19:20 +08:00
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
|
|
|
|
trait LoggerTrait
|
|
|
|
{
|
|
|
|
protected function comment($text)
|
|
|
|
{
|
|
|
|
Log::info($text);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function info($text)
|
|
|
|
{
|
|
|
|
Log::info($text);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function error($text)
|
|
|
|
{
|
|
|
|
Log::error($text);
|
|
|
|
}
|
|
|
|
}
|