xxxxxxxxxx
composer require spatie/laravel-activitylog
xxxxxxxxxx
use Illuminate\Support\Facades\Log;
Log::emergency($message);
Log::alert($message);
Log::critical($message);
Log::error($message);
Log::warning($message);
Log::notice($message);
Log::info($message);
Log::debug($message);
xxxxxxxxxx
use Illuminate\Support\Facades\Log;
Log::info(json_encode($user);
xxxxxxxxxx
use Illuminate\Support\Facades\Log;
Log::debug('Debug Log Tracked');
Log::emergency('Emergency Log Tracked');
Log::alert('Alert Log Tracked');
Log::error('Error Log Tracked');
Log::warning('Warning Log Tracked');
Log::notice('Notice Log Tracked');
Log::info('Info Log Tracked');
Log::critical('Critical Log Tracked');
/* LOG FILE PATH */
/storage/logs/laravel.log
YourLaravelProject\storage\logs\ check date wise required log file
xxxxxxxxxx
use Illuminate\Support\Facades\Log;
// Severity levels base on RFC5424 commented on the right side
Log::emergency($message); // system is unusable
Log::alert($message); // action must be taken immediately
Log::critical($message); // critical conditions
Log::error($message); // error conditions
Log::warning($message); // warning conditions
Log::notice($message); // normal but significant condition
Log::info($message); // informational messages
Log::debug($message); // debug-level messages
// Checkout RFC5424 here - https://tools.ietf.org/html/rfc5424
xxxxxxxxxx
use Log;
Log::emergency($message);
Log::alert($message);
Log::critical($message);
Log::error($message);
Log::warning($message);
Log::notice($message);
Log::info($message);
Log::debug($message);
xxxxxxxxxx
#https://laravel.com/docs/8.x/logging#writing-log-messages
use Illuminate\Support\Facades\Log;
Log::emergency($message);
Log::alert($message);
Log::critical($message);
Log::error($message);
Log::warning($message);
Log::notice($message);
Log::info($message);
Log::debug($message);
xxxxxxxxxx
use Illuminate\Support\Facades\Log;
Log::build([
'driver' => 'single',
'path' => storage_path('logs/custom.log'),
])->info('Something happened!');
xxxxxxxxxx
use Monolog\Logger;
$orderLog = new Logger('order');
$orderLog->pushHandler(new StreamHandler(storage_path('logs/mylogs.log')), Logger::INFO);
$orderLog->info("Order id: ${orderId}");
xxxxxxxxxx
use Illuminate\Support\Facades\Log;
Log::emergency($message);
Log::alert($message);
Log::critical($message);
Log::error($message);
Log::warning($message);
Log::notice($message);
Log::info($message);
Log::debug($message);