Skip to content

Commit

Permalink
log: make ui server link clickable appending http://
Browse files Browse the repository at this point in the history
  • Loading branch information
canewsin committed Jan 9, 2024
1 parent a491529 commit e0fb860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/site_server/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub async fn run(
site_controller: Addr<SitesController>,
user_controller: Addr<UserController>,
) -> std::io::Result<()> {
info!("Ui Listening On: {}:{}", ENV.ui_ip, ENV.ui_port);
info!("Ui Listening On: http://{}:{}", ENV.ui_ip, ENV.ui_port);
let nonces = Arc::new(Mutex::new(HashSet::new()));
HttpServer::new(move || {
let shared_data = ZeroServer {
Expand Down

0 comments on commit e0fb860

Please sign in to comment.