diff options
Diffstat (limited to 'rust/src/bin/fatcatd.rs')
-rw-r--r-- | rust/src/bin/fatcatd.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rust/src/bin/fatcatd.rs b/rust/src/bin/fatcatd.rs index 256027c8..4778df9e 100644 --- a/rust/src/bin/fatcatd.rs +++ b/rust/src/bin/fatcatd.rs @@ -70,6 +70,9 @@ fn main() { ))) } + let host_port = "localhost:9411"; + info!(logger, "Starting fatcatd API server on http://{}", &host_port); + let mut chain = Chain::new(LoggerMiddleware::new(router, logger, formatter)); // Auth stuff unused for now @@ -85,7 +88,7 @@ fn main() { } else { // Using HTTP Iron::new(chain) - .http("localhost:9411") + .http(host_port) .expect("Failed to start HTTP server"); } } |