Changing error logs to debug

This commit is contained in:
Milan Perera 2017-06-21 13:10:24 +05:30
parent 8badc2bc37
commit cda5a0b216

View File

@ -397,8 +397,8 @@ var utils = function () {
publicMethods["getUniqueBrowserScope"] = function () {
var deviceScope = "device_" + utility.md5(request.getHeader("User-Agent") + "::" + request.getRemoteAddr());
deviceScope = deviceScope + " ";
log.error("device scope");
log.error(deviceScope);
log.debug("device scope");
log.debug(deviceScope);
return deviceScope;
};