Skip to content

Commit fe0ab29

Browse files
committed
Show sockets in startup info as HTTP-URLs
Fixes #4.
1 parent 2a19723 commit fe0ab29

File tree

1 file changed

+2
-2
lines changed
  • source/reloadedvibes

1 file changed

+2
-2
lines changed

source/reloadedvibes/app.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,14 @@ int main(string[] args)
177177
if (!optDisableService)
178178
{
179179
stdout.writeln();
180-
stdout.writeln("Notification service: ", service.toString);
180+
stdout.writeln("Notification service: http://", service.toString);
181181
}
182182

183183
if (optSocketWebServer !is null)
184184
{
185185
// dfmt off
186186
stdout.writeln();
187-
stdout.writeln("Built-in webserver: ", webserver.toString);
187+
stdout.writeln("Built-in webserver: http://", webserver.toString);
188188
stdout.writeln("Serving: ", optDocumentRootWebServer.absolutePath);
189189
stdout.writeln("Script injection: ", ((optNoInjectWebServer) ? "disabled" : "enabled"));
190190
// dfmt on

0 commit comments

Comments
 (0)