diff options
Diffstat (limited to 'src/server/JackDriver.cpp')
-rw-r--r-- | src/server/JackDriver.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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; } } |