mapped attribute-resolver WARNing
Cantor, Scott
cantor.2 at osu.edu
Wed Apr 27 10:03:43 EDT 2016
On 4/27/16, 9:53 AM, "users on behalf of Cantor, Scott" <users-bounces at shibboleth.net on behalf of cantor.2 at osu.edu> wrote:
>
>Avoiding the warning is a simple matter of log filtering in most cases.
Specifically I reviewed all my warnings to make sure I was ok with them, and then added <logger name="net.shibboleth.idp.attribute.resolver.PluginDependencySupport" level="ERROR" /> to my config to suppress those.
In advanced cases you can use a logback expression filter to turn off specific things, e.g.,
<filter class="ch.qos.logback.core.filter.EvaluatorFilter">
<evaluator>
<expression>return throwable != null && throwable.getMessage().contains("something to ignore");</expression>
</evaluator>
<OnMismatch>NEUTRAL</OnMismatch>
<OnMatch>DENY</OnMatch>
</filter>
-- Scott
More information about the users
mailing list