tracker: change nodebound warn level

This commit is contained in:
nick-delirium 2025-03-17 14:42:46 +01:00 committed by Delirium
parent 6f172d4f01
commit 5bbd7cff10

View file

@ -392,7 +392,7 @@ export default abstract class Observer {
{
acceptNode: (node) => {
if (this.app.nodes.getID(node) !== undefined) {
this.app.debug.warn('! Node is already bound', node)
this.app.debug.info('! Node is already bound', node)
}
return isIgnored(node) || this.app.nodes.getID(node) !== undefined
? NodeFilter.FILTER_REJECT