Remove logs that aren't helpful for prod
This commit is contained in:
parent
c6161dd312
commit
21b9cf5b2d
4 changed files with 0 additions and 5 deletions
|
|
@ -1,7 +1,6 @@
|
|||
import { filterPrivateRows, PrivacyMode } from "../privacy.mjs";
|
||||
import { createDiceTable } from "./utils.mjs";
|
||||
import { Database } from "./Database.mjs";
|
||||
import { Logger } from "../Logger.mjs";
|
||||
import { validateBucketConfig } from "../buckets.mjs";
|
||||
|
||||
const { deleteProperty, diffObject, expandObject, mergeObject, randomID } = foundry.utils;
|
||||
|
|
@ -130,7 +129,6 @@ export class MemoryDatabase extends Database {
|
|||
row._id ||= randomID();
|
||||
row.timestamp = new Date().toISOString();
|
||||
|
||||
Logger.debug(`Adding row:`, row);
|
||||
this.#rows[userID][table].push(row);
|
||||
if (rerender) {
|
||||
this.render({ userUpdated: userID });
|
||||
|
|
|
|||
|
|
@ -31,7 +31,6 @@ export function determinePrivacyFromRollMode(rollMode) {
|
|||
* @returns The filtered rows
|
||||
*/
|
||||
export function filterPrivateRows(rows, userID, privacies) {
|
||||
console.log({rows, userID, privacies});
|
||||
const filtered = [];
|
||||
|
||||
const isMe = userID === game.user.id;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue