fix(assist): removed debug logs
This commit is contained in:
parent
cea5eda985
commit
816cd66eee
3 changed files with 3 additions and 3 deletions
|
|
@ -25,7 +25,7 @@ const {
|
|||
const wsRouter = express.Router();
|
||||
|
||||
let io;
|
||||
const debug = true;//process.env.debug === "1";
|
||||
const debug = process.env.debug === "1";
|
||||
|
||||
const createSocketIOServer = function (server, prefix) {
|
||||
io = _io(server, {
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ const pubClient = createClient({url: REDIS_URL});
|
|||
const subClient = pubClient.duplicate();
|
||||
console.log(`Using Redis: ${REDIS_URL}`);
|
||||
let io;
|
||||
const debug = true;// = process.env.debug === "1";
|
||||
const debug = process.env.debug === "1";
|
||||
|
||||
const createSocketIOServer = function (server, prefix) {
|
||||
if (process.env.uws !== "true") {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ const {
|
|||
const wsRouter = express.Router();
|
||||
|
||||
let io;
|
||||
const debug = true;//process.env.debug === "1";
|
||||
const debug = process.env.debug === "1";
|
||||
|
||||
const createSocketIOServer = function (server, prefix) {
|
||||
if (process.env.uws !== "true") {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue