Skip to content

Commit

Permalink
remove event name
Browse files Browse the repository at this point in the history
  • Loading branch information
brettmc committed Jan 22, 2025
1 parent 67ed300 commit 88db93f
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/API/Logs/LogRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ class LogRecord
protected int $severityNumber = 0;
protected ?string $severityText = null;
protected array $attributes = [];
/** @experimental */
protected ?string $eventName = null;

public function __construct(protected mixed $body = null)
{
Expand Down Expand Up @@ -101,14 +99,4 @@ public function setObservedTimestamp(?int $observedTimestamp = null): self

return $this;
}

/**
* @experimental
*/
public function setEventName(string $eventName): self
{
$this->eventName = $eventName;

return $this;
}
}

0 comments on commit 88db93f

Please sign in to comment.