From 75bec507b3815f8a101de265bd353cfdb289bc6d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 21 Nov 2012 08:44:24 +0000 Subject: Configuration file support. Change "jack-client" option to "jack-name". Print more informative info log messages. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4841 a436a847-0d15-0410-975c-d299462d15a1 --- src/socket/SocketListener.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/socket') diff --git a/src/socket/SocketListener.cpp b/src/socket/SocketListener.cpp index 76afb4fd..351dbcab 100644 --- a/src/socket/SocketListener.cpp +++ b/src/socket/SocketListener.cpp @@ -48,6 +48,7 @@ SocketListener::SocketListener(Ingen::World& world) _world.log().error("Failed to create UNIX socket\n"); _unix_sock.close(); } + _world.log().info(Raul::fmt("Listening on socket %1%\n") % unix_uri); // Create TCP socket int port = world.conf().option("engine-port").get_int(); @@ -58,6 +59,7 @@ SocketListener::SocketListener(Ingen::World& world) _world.log().error("Failed to create TCP socket\n"); _net_sock.close(); } + _world.log().info(Raul::fmt("Listening on TCP port %1%\n") % port); start(); } -- cgit v1.2.1