From bf9ef8fa0fd56525f004ae6375d54a439edf1d91 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sun, 4 May 2025 14:00:55 +0300 Subject: [PATCH] Remove debug logs --- public/script.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/public/script.js b/public/script.js index c73efb23b..3d07b782a 100644 --- a/public/script.js +++ b/public/script.js @@ -1528,7 +1528,6 @@ export async function printCharacters(fullRefresh = false) { const entities = getEntitiesList({ doFilter: true }); const pageSize = Number(accountStorage.getItem(storageKey)) || per_page_default; - console.log('pageSize for characters = ' + pageSize); const sizeChangerOptions = [10, 25, 50, 100, 250, 500, 1000]; $('#rm_print_characters_pagination').pagination({ dataSource: entities, @@ -1580,7 +1579,6 @@ export async function printCharacters(fullRefresh = false) { }, afterSizeSelectorChange: function (e, size) { accountStorage.setItem(storageKey, e.target.value); - console.log('pageSize for characters after getting updated = ' + accountStorage.getItem(storageKey)); paginationDropdownChangeHandler(e, size); }, afterPaging: function (e) {