Remove console logs

This commit is contained in:
Prathamesh Musale 2024-10-11 14:46:15 +05:30
parent e43b3481a9
commit 9af77bd2a6

View File

@ -102,7 +102,6 @@ export const createAndStartServer = async (
// Apply GraphQL middleware
const applyGraphQLMiddleware = () => {
console.log('applyGraphQLMiddleware');
server.applyMiddleware({
app,
path: gqlPath
@ -111,7 +110,6 @@ export const createAndStartServer = async (
// Apply RPC middleware
const applyRPCMiddleware = () => {
console.log('applyRPCMiddleware');
if (!rpcEnabled) {
return;
}