File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -949,9 +949,12 @@ def _get_runner_type(
949
949
950
950
runner_type = self ._get_default_runner_type (architectures )
951
951
952
- logger .info (
953
- "Resolved `--runner auto` to `--runner %s`. "
954
- "Pass the value explicitly to silence this message." , runner_type )
952
+ # Don't log the most common case
953
+ if runner_type != "generate" :
954
+ logger .info (
955
+ "Resolved `--runner auto` to `--runner %s`. "
956
+ "Pass the value explicitly to silence this message." ,
957
+ runner_type )
955
958
956
959
return runner_type
957
960
@@ -998,9 +1001,12 @@ def _get_convert_type(
998
1001
convert_type = self ._get_default_convert_type (architectures ,
999
1002
runner_type )
1000
1003
1001
- logger .info (
1002
- "Resolved `--convert auto` to `--convert %s`. "
1003
- "Pass the value explicitly to silence this message." , convert_type )
1004
+ # Don't log the most common case
1005
+ if convert_type != "none" :
1006
+ logger .info (
1007
+ "Resolved `--convert auto` to `--convert %s`. "
1008
+ "Pass the value explicitly to silence this message." ,
1009
+ convert_type )
1004
1010
1005
1011
return convert_type
1006
1012
You can’t perform that action at this time.
0 commit comments