airbnbapi
airbnbapi copied to clipboard
Loglevel debug is not showing log.e()
https://github.com/zxol/airbnbapi/blob/3ff80755f35be3818db8000bfcca2a92190f2202/src/log.js#L9
There debug
should also be added in that line, right?
I would expect this:
const log = {
e: obj => {
if (LOGLEVEL === 'error' || LOGLEVEL === 'info' || LOGLEVEL === 'debug') {
console.error(obj);
}
},
i: obj => {
if (LOGLEVEL === 'info' || LOGLEVEL === 'debug') {
console.log(obj);
}
},
d: obj => {
if (LOGLEVEL === 'debug') {
console.error(obj);
}
}
};