Skip to content

Commit b5d1dd8

Browse files
committed
some additional debug logging was left in, now commented out. will still be part of 0.44 since the jar has not been uploaded yet.
git-svn-id: https://share-extras.googlecode.com/svn/trunk/Audit Dashlet@1227 a3f5c567-fd0f-3a89-9b71-a290c5a5f590
1 parent 322ab5e commit b5d1dd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/alfresco/site-webscripts/org/sharextras/components/dashlets/audit-application-data.get.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ function main()
4040
// pending ALF-8307, working around it by adding the quotes with a regex replace
4141
var requoting_regex = /:([\w-@.]+)\,/g;
4242
var requoted_response = rawresponse.replace(requoting_regex, ":\"$1\",");
43-
//if(logger.isLoggingEnabled()) logger.log("requoted_response:\n"+requoted_response);
43+
//if (logger.isLoggingEnabled()) logger.log("requoted_response:\n"+requoted_response);
4444

4545
// replace with a space spurious newlines that could have been stored in a json item, before the feed gets eval'd. see also ALF-11190.
4646
var escaped_response = requoted_response.replace(/(\n|\r\n|\r)/g, " ");
47-
if (logger.isLoggingEnabled()) logger.log("escaped_response:\n"+escaped_response);
47+
//if (logger.isLoggingEnabled()) logger.log("escaped_response:\n"+escaped_response);
4848

4949
var auditresponse = eval("(" + escaped_response + ")");
5050
model.auditresponse = auditresponse;

0 commit comments

Comments
 (0)