Skip to content

Commit

Permalink
Merge pull request #794 from mpalmer/patch-1
Browse files Browse the repository at this point in the history
Correct startup log message for unix-server
  • Loading branch information
robjtede authored Apr 10, 2024
2 parents 390dd6b + 324c0d4 commit 1d32be3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unix-socket/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ async fn index(_req: HttpRequest) -> &'static str {
async fn main() -> std::io::Result<()> {
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));

log::info!("starting HTTP server at http://localhost:8080");
log::info!("starting HTTP server at unix:/tmp/actix-uds.socket");

HttpServer::new(|| {
App::new()
Expand Down

0 comments on commit 1d32be3

Please sign in to comment.