diff options
author | David Robillard <d@drobilla.net> | 2019-03-08 12:38:19 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-03-09 00:43:43 +0100 |
commit | 532af2452bac2cdd0e2732ad145fdc2b141a4afc (patch) | |
tree | 0b078c37a137ef0da3a1e76bc150e99f65f6d7dc /ingen/client | |
parent | 6bb3c48972d172fec244afae08a905e2246d9cda (diff) | |
download | ingen-532af2452bac2cdd0e2732ad145fdc2b141a4afc.tar.gz ingen-532af2452bac2cdd0e2732ad145fdc2b141a4afc.tar.bz2 ingen-532af2452bac2cdd0e2732ad145fdc2b141a4afc.zip |
Localise dependency on boost::format and improve logging API
Diffstat (limited to 'ingen/client')
-rw-r--r-- | ingen/client/SocketClient.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ingen/client/SocketClient.hpp b/ingen/client/SocketClient.hpp index bce5ab38..092ef9d2 100644 --- a/ingen/client/SocketClient.hpp +++ b/ingen/client/SocketClient.hpp @@ -57,8 +57,8 @@ public: SPtr<Raul::Socket> sock(new Raul::Socket(type)); if (!sock->connect(uri)) { - world.log().error(fmt("Failed to connect <%1%> (%2%)\n") - % sock->uri() % strerror(errno)); + world.log().error("Failed to connect <%1%> (%2%)\n", + sock->uri(), strerror(errno)); return SPtr<Interface>(); } return SPtr<Interface>(new SocketClient(world, uri, sock, respondee)); |