Hide behaviors handled error messages

This commit is contained in:
Eric NGUYEN 2022-08-31 11:33:45 +02:00
parent 3feae9367b
commit 35e9421ae8

View file

@ -34,10 +34,9 @@ export function ApplyBehaviors(container: IContainerModel, symbols: Map<string,
} }
} }
} catch (error) { } catch (error) {
console.warn(error); console.debug(error);
} }
return container; return container;
} }