Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
[Fix #39] Fix log issue with GroupResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Brosy committed Apr 5, 2017
1 parent b53e009 commit bf10f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Response/GroupResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ protected function logResponse()
$logger->pushHandler(new StreamHandler(storage_path('logs/laravel-fcm.log')));

$logMessage = "notification send to group: $this->to";
$logMessage .= "with $this->numberTokensSuccess success and $this->Failure failure";
$logMessage .= "with $this->numberTokensSuccess success and $this->numberTokensFailure";

$logger->info($logMessage);
}
Expand Down

0 comments on commit bf10f7c

Please sign in to comment.