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