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.