This commit is contained in:
Thomas Forgione 2018-09-25 14:53:33 +02:00
parent a47ee3c814
commit be1f064c4d
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
2 changed files with 1 additions and 3 deletions

View File

@ -166,8 +166,6 @@ impl GeneralBuilder {
/// Sends a notification of a successful build.
pub fn notify_success(&self) {
println!("{}", self.success.to_str().unwrap());
let _ = Notification::new()
.appname("Mars")
.summary("Success")

View File

@ -39,7 +39,7 @@ fn main() {
})
.map_err(|e| eprintln!("server error: {}", e));
println!("{}", format!("Server listening to {}", addr).bold().green());
println!("{}", format!("Mars server listening on {}...", addr).bold().green());
hyper::rt::run(server);
});