fix order when there are errors on funnel

This commit is contained in:
Matias Alejo Garcia 2014-12-06 19:16:50 -03:00
commit c8c82b3cb5
3 changed files with 30 additions and 26 deletions

View file

@ -76,7 +76,7 @@ module.exports = {
try {
return sjcl.decrypt(key, sjclEncryptedJson);
} catch (e) {
log.info('Decryption failed due to error: ' + e.message);
log.debug('Decryption failed due to error: ' + e.message);
return null;
}
}