Reduce console.log verbosity

This commit is contained in:
Matthias 2024-03-07 06:25:01 +01:00
parent 8068de9fd0
commit eaaa775af9

View File

@ -53,7 +53,7 @@ const availablePairs = computed<string[]>(() => {
const tf = finalTimeframe.value;
return botStore.activeBot.pairlistWithTimeframe
.filter(([pair, timeframe]) => {
console.log(pair, timeframe, tf);
// console.log(pair, timeframe, tf);
return timeframe === tf;
})
.map(([pair]) => pair);