Skip to content

Commit 99e4c5e

Browse files
committed
Reintroduced warnigns on issues with Composition
1 parent 25bbd2d commit 99e4c5e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Engine/ScriptAnalyzer.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,8 +466,9 @@ private void LoadRules(Dictionary<string, List<string>> result, CommandInvocatio
466466
{
467467
container.ComposeParts(this);
468468
}
469-
catch
470-
{
469+
catch (CompositionException compositionException)
470+
{
471+
this.outputWriter.WriteWarning(compositionException.ToString());
471472
}
472473
}
473474

0 commit comments

Comments
 (0)