From 12f9a66349092cc662034ba912413abfa1d34c3a Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 26 Feb 2023 20:06:49 -0600 Subject: [PATCH] Logging changes --- scripts/client/payphone.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/client/payphone.js b/scripts/client/payphone.js index f5f6b09f..30205229 100644 --- a/scripts/client/payphone.js +++ b/scripts/client/payphone.js @@ -144,7 +144,7 @@ function processPayPhonesDistance() { } if (tempRingingPhone == -1) { - logToConsole(LOG_DEBUG, "[V.RP.PayPhone]: No phones are ringing, stopping all ring sounds"); + logToConsole(LOG_VERBOSE, "[V.RP.PayPhone]: No phones are ringing, stopping all ring sounds"); payPhoneRingingSound.stop(); } else { let distance = getDistance(getLocalPlayerPosition(), getServerData().payPhones[tempRingingPhone].position); @@ -152,7 +152,7 @@ function processPayPhonesDistance() { payPhoneRingingSound.volume = distancePercent / 100; if (ringingPayPhone == -1) { - logToConsole(LOG_DEBUG, "[V.RP.PayPhone]: No previous phone ringing, starting ring sound"); + logToConsole(LOG_VERBOSE, "[V.RP.PayPhone]: No previous phone ringing, starting ring sound"); payPhoneRingingSound.play(); } }