Skip to content

Commit

Permalink
logs are too annoying, get rid of them
Browse files Browse the repository at this point in the history
  • Loading branch information
onlypuppy7 committed Nov 17, 2024
1 parent 14cf199 commit cddc1e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server-services/start-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default async function run () {
];
auth_commands.includes(msg.cmd) && (cmdType = 'auth_required');

ss.config.verbose && log.dim("Received cmd: "+msg.cmd+"; type: "+cmdType), console.log(msg);
ss.config.verbose && msg.cmd !=="servicesInfo" && (log.dim("Received cmd: "+msg.cmd+"; type: "+cmdType), console.log(msg));

if (ss.config.services.ratelimit.protect_ips)
ip = crypto.createHash('md5').update(ip).digest('hex');
Expand Down Expand Up @@ -295,7 +295,7 @@ export default async function run () {
servicesInfo.client.gameInfo[msg.thisServer] = gameInfoForClient;
};

console.log(servicesInfo);
// console.log(servicesInfo);
break;
// Client client commands
case 'validateLogin':
Expand Down

0 comments on commit cddc1e2

Please sign in to comment.