@@ -87,7 +87,7 @@ func runHostPreflights(c *cli.Context) error {
8787 if ! outputs .HaveWarns () || c .Bool ("no-prompt" ) {
8888 return nil
8989 }
90- logrus . Warn ("Host preflights have warnings on one or more hosts" )
90+ fmt . Println ("Host preflights have warnings on one or more hosts" )
9191 if ! prompts .New ().Confirm ("Do you want to continue ?" , false ) {
9292 return fmt .Errorf ("user aborted" )
9393 }
@@ -196,10 +196,10 @@ func copyUserProvidedConfig(c *cli.Context) error {
196196// overwriteExistingConfig asks user if they want to overwrite the existing cluster
197197// configuration file.
198198func overwriteExistingConfig () bool {
199- logrus . Warn ("A cluster configuration file was found. This means you already" )
200- logrus . Warn ("have created and configured a cluster. You can either use the" )
201- logrus . Warn ("existing configuration or create a new one (the original config" )
202- logrus . Warn ("will be backed up)." )
199+ fmt . Println ("A cluster configuration file was found. This means you already" )
200+ fmt . Println ("have created and configured a cluster. You can either use the" )
201+ fmt . Println ("existing configuration or create a new one (the original config" )
202+ fmt . Println ("will be backed up)." )
203203 return prompts .New ().Confirm (
204204 "Do you want to create a new cluster configuration ?" , false ,
205205 )
@@ -381,9 +381,9 @@ var installCommand = &cli.Command{
381381 },
382382 Action : func (c * cli.Context ) error {
383383 if defaults .DecentralizedInstall () {
384- logrus . Warnf ("Decentralized install was detected. To manage the cluster" )
385- logrus . Warnf ("you have to use the '%s node' commands instead." , defaults .BinaryName ())
386- logrus . Warnf ("Run '%s node --help' for more information." , defaults .BinaryName ())
384+ fmt . Println ("Decentralized install was detected. To manage the cluster" )
385+ fmt . Printf ("you have to use the '%s node' commands instead.\n " , defaults .BinaryName ())
386+ fmt . Printf ("Run '%s node --help' for more information.\n " , defaults .BinaryName ())
387387 return fmt .Errorf ("decentralized install detected" )
388388 }
389389 useprompt := ! c .Bool ("no-prompt" )
0 commit comments