diff options
author | Jonas Smedegaard <dr@jones.dk> | 2021-11-30 20:16:29 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2021-11-30 20:18:05 +0100 |
commit | 9e114fc754a465f72830579589a9e281ff36d17b (patch) | |
tree | 05a8cdae95788694b233eab21c61119476c05d2f /bin | |
parent | e8446d412e5d7621548f29e8fd358451d0191fb7 (diff) |
include maturity in log messages about skipped feature
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/feature-check.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/feature-check.pl b/bin/feature-check.pl index e2983ee..bc3d8c4 100755 --- a/bin/feature-check.pl +++ b/bin/feature-check.pl @@ -192,7 +192,7 @@ sub feature { } $state->{$feature}{maturity} = $maturity; - $log->warning("skipping unacceptable feature: $feature") + $log->warningf('skipping %s feature: %s', $MATURITY[$maturity], $feature) if $maturity < $threshold; } |