summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/src/SocketHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'AudioManagerDaemon/src/SocketHandler.cpp')
-rw-r--r--AudioManagerDaemon/src/SocketHandler.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/AudioManagerDaemon/src/SocketHandler.cpp b/AudioManagerDaemon/src/SocketHandler.cpp
index dbff14c..26f6d66 100644
--- a/AudioManagerDaemon/src/SocketHandler.cpp
+++ b/AudioManagerDaemon/src/SocketHandler.cpp
@@ -31,14 +31,11 @@
#include <algorithm>
#include <time.h>
#include <features.h>
-#include <dlt/dlt.h>
#include <signal.h>
+#include "DLTWrapper.h"
-#include <iostream>
//todo: implement time correction if timer was interrupted by call
-DLT_IMPORT_CONTEXT(AudioManager)
-
using namespace am;
SocketHandler::SocketHandler() :
@@ -112,7 +109,7 @@ void SocketHandler::start_listenting()
}
else
{
- DLT_LOG(AudioManager, DLT_LOG_ERROR, DLT_STRING("SocketHandler::start_listenting ppoll returned with error"), DLT_INT(errno));
+ logError("SocketHandler::start_listenting ppoll returned with error",errno);
exit(0);
}
}
@@ -128,7 +125,7 @@ void SocketHandler::start_listenting()
//todo: add things to do here before going to sleep
exit(0);
}
- DLT_LOG(AudioManager, DLT_LOG_ERROR, DLT_STRING("SocketHandler::start_listenting poll returned with error"),DLT_INT(errno));
+ logError("SocketHandler::start_listenting poll returned with error",errno);
exit(0);
}
//sigprocmask (SIG_SETMASK, &oldmask, NULL);