Cleanup logger statements

This commit is contained in:
Oliver-Akins 2025-07-24 20:33:07 -06:00
parent db3cad909e
commit 02b49687cf
3 changed files with 1 additions and 8 deletions

View file

@ -1,6 +1,5 @@
import { __ID__, filePath } from "../consts.mjs";
import { attributeSorter } from "../utils/attributeSort.mjs";
import { Logger } from "../utils/Logger.mjs";
import { toID } from "../utils/toID.mjs";
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
@ -133,7 +132,6 @@ export class AttributeManager extends HandlebarsApplicationMixin(ApplicationV2)
};
};
Logger.debug(`Updating ${binding} value to ${value}`);
setProperty(this.#attributes, binding, value);
await this.render({ parts: [ `attributes` ]});
};