Stackdriver Logging Client - Class Entry (1.25.5)

Reference documentation and code samples for the Stackdriver Logging Client class Entry.

An individual entry in a log.

Example:

use Google\Cloud\Logging\LoggingClient;

$logging = new LoggingClient();

$logger = $logging->logger('my-log');

$entry = $logger->entry('my message');

Methods

__construct

Parameter
NameDescription
info array

[optional] The entry's metadata.

info

Retrieves the entry's details.

Example:

$info = $entry->info();
echo $info['textPayload'];
Returns
TypeDescription
array