summaryrefslogtreecommitdiffstats
path: root/Http/EntryPoint/DigestAuthenticationEntryPoint.php
diff options
context:
space:
mode:
authorIltar van der Berg <ivanderberg@hostnet.nl>2015-01-15 10:04:56 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2015-01-16 16:11:12 +0100
commite26eec7c5599a8ab6fd2b5c448e97970f2db3cf9 (patch)
treee10eb6b1d244406d98830beef59756c65088b154 /Http/EntryPoint/DigestAuthenticationEntryPoint.php
parent000c29c2deaea9e4ea3e30ee7ac5409a7090b2da (diff)
downloadsymfony-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/DigestAuthenticationEntryPoint.php')
-rw-r--r--Http/EntryPoint/DigestAuthenticationEntryPoint.php2
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();