Skip to content

Commit 68e8076

Browse files
author
Ryan Patrick Kyle
committed
modify error message
1 parent ef4e03c commit 68e8076

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Dash.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ function run_server(app::DashApp, host = HTTP.Sockets.localhost, port = 8050;
116116
handler = make_handler(app);
117117
try
118118
task = @async HTTP.serve(handler, host, port)
119-
@info string("Running on http://", host, ":", port)
119+
@info string("HTTP.jl server running on http://", host, ":", port)
120120
wait(task)
121121
catch e
122122
close(task)
123123
if e isa InterruptException
124-
@warn "Interrupted: listen($task)"
124+
@warn string("HTTP.jl server stopped at http://", host, ":", port)
125125
else
126126
rethrow(e)
127127
end

0 commit comments

Comments
 (0)