From 389da7d63b8e78baacf22cf52905dc5420079d71 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 22 Oct 2011 05:12:51 +0000 Subject: Simplify Parser. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3589 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/JackDriver.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/server') diff --git a/src/server/JackDriver.cpp b/src/server/JackDriver.cpp index 821582c9..b0094650 100644 --- a/src/server/JackDriver.cpp +++ b/src/server/JackDriver.cpp @@ -274,7 +274,7 @@ JackDriver::activate() Shared::World* world = _engine.world(); if (_is_activated) { - LOG(warn) << "Jack driver already activated." << endl; + LOG(warn) << "Jack driver already activated" << endl; return; } @@ -290,10 +290,10 @@ JackDriver::activate() is_realtime()); if (jack_activate(_client)) { - LOG(error) << "Could not activate Jack client, aborting." << endl; + LOG(error) << "Could not activate Jack client, aborting" << endl; exit(EXIT_FAILURE); } else { - LOG(info) << "Activated Jack client." << endl; + LOG(info) << "Activated Jack client" << endl; } } -- cgit v1.2.1