summaryrefslogtreecommitdiffstats
path: root/src/socket
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-11-21 08:44:24 +0000
committerDavid Robillard <d@drobilla.net>2012-11-21 08:44:24 +0000
commit75bec507b3815f8a101de265bd353cfdb289bc6d (patch)
tree9226a74b1144dd404fb4eae3066642f425a77f0c /src/socket
parent480c0e362aec524d992ed7adaccf3c13b71e6f93 (diff)
downloadingen-75bec507b3815f8a101de265bd353cfdb289bc6d.tar.gz
ingen-75bec507b3815f8a101de265bd353cfdb289bc6d.tar.bz2
ingen-75bec507b3815f8a101de265bd353cfdb289bc6d.zip
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
Diffstat (limited to 'src/socket')
-rw-r--r--src/socket/SocketListener.cpp2
1 files changed, 2 insertions, 0 deletions
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();
}