Fix logging
This commit is contained in:
parent
0a69937238
commit
47d01a0dca
@ -129,6 +129,8 @@ async fn main() -> tide::Result<()> {
|
|||||||
|
|
||||||
let listener = format!("{}:{}", address, port);
|
let listener = format!("{}:{}", address, port);
|
||||||
|
|
||||||
|
println!("Starting Libreddit...");
|
||||||
|
|
||||||
// Start HTTP server
|
// Start HTTP server
|
||||||
let mut app = tide::new();
|
let mut app = tide::new();
|
||||||
|
|
||||||
@ -244,7 +246,9 @@ async fn main() -> tide::Result<()> {
|
|||||||
// Default service in case no routes match
|
// Default service in case no routes match
|
||||||
app.at("*").get(|req| error(req, "Nothing here".to_string()));
|
app.at("*").get(|req| error(req, "Nothing here".to_string()));
|
||||||
|
|
||||||
|
println!("Running Libreddit v{} on {}!", env!("CARGO_PKG_VERSION"), listener);
|
||||||
|
|
||||||
app.listen(&listener).await?;
|
app.listen(&listener).await?;
|
||||||
|
|
||||||
Ok(println!("Running Libreddit v{} on {}!", env!("CARGO_PKG_VERSION"), listener))
|
Ok(())
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user