Skip to content

Commit

Permalink
Merge pull request #2363 from bassjobsen/patch-3
Browse files Browse the repository at this point in the history
Change error message when caching fails
  • Loading branch information
lukeapage committed Jan 3, 2015
2 parents 29eb426 + e45f7eb commit e479a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/less-browser/cache.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = function(window, options, logger) {
cache.setItem(path + ':timestamp', lastModified);
} catch(e) {
//TODO - could do with adding more robust error handling
logger.error('failed to save');
logger.error('failed to save "' + path + '" to local storage for caching.');
}
}
},
Expand Down

0 comments on commit e479a4c

Please sign in to comment.