diff options
author | Iltar van der Berg <ivanderberg@hostnet.nl> | 2015-01-15 10:04:56 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-01-16 16:11:12 +0100 |
commit | e26eec7c5599a8ab6fd2b5c448e97970f2db3cf9 (patch) | |
tree | e10eb6b1d244406d98830beef59756c65088b154 /Http/EntryPoint | |
parent | 000c29c2deaea9e4ea3e30ee7ac5409a7090b2da (diff) | |
download | symfony-security-e26eec7c5599a8ab6fd2b5c448e97970f2db3cf9.zip symfony-security-e26eec7c5599a8ab6fd2b5c448e97970f2db3cf9.tar.gz symfony-security-e26eec7c5599a8ab6fd2b5c448e97970f2db3cf9.tar.bz2 |
[DX] Attempt to improve logging messages with parameters
Diffstat (limited to 'Http/EntryPoint')
-rw-r--r-- | Http/EntryPoint/DigestAuthenticationEntryPoint.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/EntryPoint/DigestAuthenticationEntryPoint.php b/Http/EntryPoint/DigestAuthenticationEntryPoint.php index 71a6313..8143a41 100644 --- a/Http/EntryPoint/DigestAuthenticationEntryPoint.php +++ b/Http/EntryPoint/DigestAuthenticationEntryPoint.php @@ -54,7 +54,7 @@ class DigestAuthenticationEntryPoint implements AuthenticationEntryPointInterfac } if (null !== $this->logger) { - $this->logger->debug(sprintf('WWW-Authenticate header sent to user agent: "%s"', $authenticateHeader)); + $this->logger->debug('WWW-Authenticate header sent.', array('header' => $authenticateHeader)); } $response = new Response(); |