Remove single quote from log string
Closes #25060 Signed-off-by: saumeen prajapati <psaumeen@gmail.com>
This commit is contained in:
parent
925c5572ad
commit
d829534237
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ public class CookieHelper {
|
|||
Set<String> ret = getInternalCookieValue(session, name);
|
||||
if (ret.size() == 0) {
|
||||
String legacy = name + LEGACY_COOKIE;
|
||||
logger.debugv("Could not find any cookies with name '{0}', trying '{1}'", name, legacy);
|
||||
logger.debugv("Could not find any cookies with name {0}, trying {1}", name, legacy);
|
||||
ret = getInternalCookieValue(session, legacy);
|
||||
}
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue