Quiet noisy datafeed debug messages

This commit is contained in:
7400
2024-03-26 22:06:24 -07:00
parent 9232049e61
commit 40b85dcf9c
3 changed files with 9 additions and 12 deletions

View File

@@ -15,7 +15,7 @@ socket.on('disconnect', () => {
})
socket.on('p', async (chainId, pool, price) => {
console.log('pool price from message', chainId, pool, price)
// console.log('pool price from message', chainId, pool, price)
const s = useStore()
if( s.chainId !== chainId )
return
@@ -23,7 +23,7 @@ socket.on('p', async (chainId, pool, price) => {
})
socket.on('ohlc', async (chainId, pool, ohlcs) => {
console.log('pool bars', pool, ohlcs)
// console.log('pool bars', pool, ohlcs)
DataFeed.poolCallback(chainId, pool, ohlcs)
})