Skip to content

Commit be867e1

Browse files
authored
Merge pull request #45 from ToshY/bug/44
updated getlog with correct host
2 parents 563be75 + b8c183c commit be867e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Enum/Host.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ final class Host
2323
public const STREAM_ENDPOINT = 'video.bunnycdn.com';
2424

2525
/** @var string Logging endpoint */
26-
public const LOG_ENDPOINT = 'logging.bunnycdn.com';
26+
public const LOGGING_ENDPOINT = 'logging.bunnycdn.com';
2727
}

src/PullZoneLogRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function __construct(
3131
) {
3232
$this->setApiKey($accountApiKey);
3333

34-
parent::__construct(Host::API_ENDPOINT);
34+
parent::__construct(Host::LOGGING_ENDPOINT);
3535
}
3636

3737
/**

0 commit comments

Comments
 (0)