Remove debug logs

bf9ef8fa0fd56525f004ae6375d54a439edf1d91

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +0 -2Ignore whitespace
public/script.js+0 -2
@@ -1528,7 +1528,6 @@ export async function printCharacters(fullRefresh = false) {
15281528 const entities = getEntitiesList({ doFilter: true });
15291529
15301530 const pageSize = Number(accountStorage.getItem(storageKey)) || per_page_default;
1531- console.log('pageSize for characters = ' + pageSize);
15321531 const sizeChangerOptions = [10, 25, 50, 100, 250, 500, 1000];
15331532 $('#rm_print_characters_pagination').pagination({
15341533 dataSource: entities,
@@ -1580,7 +1579,6 @@ export async function printCharacters(fullRefresh = false) {
15801579 },
15811580 afterSizeSelectorChange: function (e, size) {
15821581 accountStorage.setItem(storageKey, e.target.value);
1583- console.log('pageSize for characters after getting updated = ' + accountStorage.getItem(storageKey));
15841582 paginationDropdownChangeHandler(e, size);
15851583 },
15861584 afterPaging: function (e) {