File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -867,19 +867,19 @@ pub(crate) fn warn_host_version_mismatch(
867867 ) ;
868868 if versions. is_lt ( ) || ( versions. is_eq ( ) && dates. is_lt ( ) ) {
869869 if cfg ! ( not( test) ) {
870- msg_info. warn ( format_args ! ( "using older {rustc_warning}.\n > Update with `rustup update --force-non-host {toolchain}`" ) ) ?;
870+ msg_info. info ( format_args ! ( "using older {rustc_warning}.\n > Update with `rustup update --force-non-host {toolchain}`" ) ) ?;
871871 }
872872 return Ok ( VersionMatch :: OlderTarget ) ;
873873 } else if versions. is_gt ( ) || ( versions. is_eq ( ) && dates. is_gt ( ) ) {
874874 if cfg ! ( not( test) ) {
875- msg_info. warn ( format_args ! (
875+ msg_info. info ( format_args ! (
876876 "using newer {rustc_warning}.\n > Update with `rustup update`"
877877 ) ) ?;
878878 }
879879 return Ok ( VersionMatch :: NewerTarget ) ;
880880 } else {
881881 if cfg ! ( not( test) ) {
882- msg_info. warn ( format_args ! ( "using {rustc_warning}." ) ) ?;
882+ msg_info. info ( format_args ! ( "using {rustc_warning}." ) ) ?;
883883 }
884884 return Ok ( VersionMatch :: Different ) ;
885885 }
You can’t perform that action at this time.
0 commit comments