Modified a log string and made a protected method public (should of been public anyway)

This commit is contained in:
2022-02-17 18:36:26 +00:00
parent e9a1ac2018
commit ebaffe3d98

View File

@@ -407,10 +407,10 @@ abstract class BasicTokenRepository
* *
* @return int * @return int
*/ */
protected function removeExisting(TokenOwnerInterface $tokenOwner) public function removeExisting(TokenOwnerInterface $tokenOwner)
{ {
if ($this->tokenLogger) { if ($this->tokenLogger) {
$this->tokenLogger->debug('Completing token for {{owner}}', [ $this->tokenLogger->debug('Removing all tokens for {{owner}}', [
'owner' => $tokenOwner 'owner' => $tokenOwner
]); ]);
} }