Przeglądaj źródła

Remove println!() in serve

Jonathan Kelley 8 miesięcy temu
rodzic
commit
38c8469d5c
1 zmienionych plików z 0 dodań i 3 usunięć
  1. 0 3
      packages/cli/src/cli/serve.rs

+ 0 - 3
packages/cli/src/cli/serve.rs

@@ -74,9 +74,6 @@ impl ServeArgs {
         // Resolve the build arguments
         self.build_arguments.resolve(&krate)?;
 
-        // Give us some space before we start printing things...
-        println!();
-
         crate::serve::serve_all(self, krate).await
     }