summaryrefslogtreecommitdiffstats
path: root/Http/RememberMe
diff options
context:
space:
mode:
authorkaiwa <info@kawax.org>2011-05-27 11:33:49 +0200
committerKai <kai@kawax.org>2011-05-27 20:29:51 +0200
commit6c6257c28442a7b4ee1fa00a6955ec394e6460a4 (patch)
tree82bc6aed4f96b738d84e7efb24668c926209a997 /Http/RememberMe
parent6b3a0ace240ef45f1a74792ca289d98241e4778f (diff)
downloadsymfony-security-6c6257c28442a7b4ee1fa00a6955ec394e6460a4.zip
symfony-security-6c6257c28442a7b4ee1fa00a6955ec394e6460a4.tar.gz
symfony-security-6c6257c28442a7b4ee1fa00a6955ec394e6460a4.tar.bz2
Checked log levels
Diffstat (limited to 'Http/RememberMe')
-rw-r--r--Http/RememberMe/AbstractRememberMeServices.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Http/RememberMe/AbstractRememberMeServices.php b/Http/RememberMe/AbstractRememberMeServices.php
index a7c63ef..74acdef 100644
--- a/Http/RememberMe/AbstractRememberMeServices.php
+++ b/Http/RememberMe/AbstractRememberMeServices.php
@@ -122,15 +122,15 @@ abstract class AbstractRememberMeServices implements RememberMeServicesInterface
throw $theft;
} catch (UsernameNotFoundException $notFound) {
if (null !== $this->logger) {
- $this->logger->debug('User for remember-me cookie not found.');
+ $this->logger->info('User for remember-me cookie not found.');
}
} catch (UnsupportedUserException $unSupported) {
if (null !== $this->logger) {
- $this->logger->debug('User class for remember-me cookie not supported.');
+ $this->logger->err('User class for remember-me cookie not supported.');
}
} catch (AuthenticationException $invalid) {
if (null !== $this->logger) {
- $this->logger->debug('Remember-Me authentication failed: '.$invalid->getMessage());
+ $this->logger->err('Remember-Me authentication failed: '.$invalid->getMessage());
}
}