Skip to content

Commit ffea01c

Browse files
authored
Updating warning log in Identify to not say Track was called (#56)
1 parent 3117bfc commit ffea01c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LaunchDarkly/LDClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ public function track($eventName, $user, $data = null, $metricValue = null)
323323
public function identify($user)
324324
{
325325
if (is_null($user) || $user->isKeyBlank()) {
326-
$this->_logger->warning("Track called with null user or null/empty user key!");
326+
$this->_logger->warning("Identify called with null user or null/empty user key!");
327327
return;
328328
}
329329
$this->_eventProcessor->enqueue($this->_eventFactoryDefault->newIdentifyEvent($user));

0 commit comments

Comments
 (0)