From: Andrew Dolgov Date: Thu, 22 Mar 2007 06:46:49 +0000 (+0100) Subject: add debug msg to setCookie X-Git-Tag: 1.2.10~13 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=cdbb6dc62652adfe754fa894720efef4758fb311;p=tt-rss.git add debug msg to setCookie --- diff --git a/functions.js b/functions.js index b6c656b6..1172a49f 100644 --- a/functions.js +++ b/functions.js @@ -430,6 +430,8 @@ function setCookie(name, value, lifetime, path, domain, secure) { d = new Date(); d.setTime(d.getTime() + (lifetime * 1000)); } + + debug("setCookie: " + name + " => " + value + ": " + d); int_setCookie(name, value, d, path, domain, secure);