Being sent a null config is not an error
Change-Id: I032a06008668005cc44fcf24fde3e6dbd39943bd
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -792,7 +792,7 @@ public class LldpLinkProvider extends AbstractProvider implements ProbedLinkProv | ... | @@ -792,7 +792,7 @@ public class LldpLinkProvider extends AbstractProvider implements ProbedLinkProv |
| 792 | 792 | ||
| 793 | private synchronized void reconfigureSuppressionRules(SuppressionConfig cfg) { | 793 | private synchronized void reconfigureSuppressionRules(SuppressionConfig cfg) { |
| 794 | if (cfg == null) { | 794 | if (cfg == null) { |
| 795 | - log.error("Suppression Config is null."); | 795 | + log.debug("Suppression Config is null."); |
| 796 | return; | 796 | return; |
| 797 | } | 797 | } |
| 798 | 798 | ... | ... |
-
Please register or login to post a comment