blob: 83594f1068dc01c5514aa4203441c52cea998c12 [file] [log] [blame]
// designed to give info to browser users, who are disturbed
// when they see http errors in the console
function explainError(status, str) {
if ('console' in global && 'info' in console) {
console.info('The above ' + status + ' is totally normal. ' + str);
}
}
export default explainError;