How to Log object? How to Log object? laravel laravel

How to Log object?


This will work, although logging the entire model will grow your log rather quickly.

Log::info(print_r($user, true));

The true in the second parameter of the print_r() method returns the information instead of printing it, which allows the Log facade to print it like a string.


You can log either by print_r or json_encode. json_encode is more readable.

For example:

use Illuminate\Support\Facades\Log;Log::info(json_encode($user)); 


I've recently started using Laravel, so this certainly works in 5.3 and 5.4, not sure for earlier versions.

The quickest way I can think of (suits smaller objects) would be to cast object to array:

Log::debug((array) $object);

Yo may wonder how's this possible, first param of debug method (as well as error, notice and other logging methods in Log class) accepts string as first param, and we are passing the array.

So, the answer lays down deep in the log writer class. There is a method that gets called every time to support formatting the messages, and it looks like this:

/** * Format the parameters for the logger. * * @param  mixed  $message * @return mixed */protected function formatMessage($message){    if (is_array($message)) {        return var_export($message, true);    } elseif ($message instanceof Jsonable) {        return $message->toJson();    } elseif ($message instanceof Arrayable) {        return var_export($message->toArray(), true);    }    return $message;}

Also to clarify things little bit more, you can take a look into: https://github.com/laravel/framework/blob/5.4/src/Illuminate/Log/Writer.php#L199 and you'll see that formateMessage method is formatting the message every time.