From dc4a17fb94c2c950803018ef6f7efd67d41bcc2d Mon Sep 17 00:00:00 2001 From: Josh Smith Date: Mon, 10 Dec 2018 17:24:03 -0500 Subject: [PATCH] way too much logging cuz idk if it works --- handlers/submitModularHandler.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/handlers/submitModularHandler.pyx b/handlers/submitModularHandler.pyx index f73fd8d..7314916 100644 --- a/handlers/submitModularHandler.pyx +++ b/handlers/submitModularHandler.pyx @@ -226,10 +226,10 @@ class handler(requestsManager.asyncRequestHandler): if (s.score - (s.c300 * 300 + s.c100 * 100 + s.c50 * 50)) < 0: #userUtils.ban(userID) #userUtils.appendNotes(userID, "Banned due to score being less than no-combo value.") - log.cmyui("{} has submitted a score where score is less than no-combo value.".format(userID), discord="cm") + log.cmyui("{} has submitted a score where score is less than no-combo value. (scoreID: {}, score: {}, pp:{})".format(s.scoreID, username, s.score, s.pp), discord="cm") if s.fullCombo and s.cmiss > 1: - log.cmyui("{} has submitted a score with 'fullCombo' flag, but has > 0 misses.".format(userID), discord="cm") + log.cmyui("{} has submitted a score with 'fullCombo' flag, but has > 0 misses. (scoreID: {}, score: {}, pp:{})".format(s.scoreID, username, s.score, s.pp), discord="cm") # Make sure the score is not memed if s.gameMode == gameModes.MANIA and s.score > 1000000: