summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-12-09 12:25:11 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-12-09 12:25:11 (GMT)
commit9b8e09c3fde755ec26e5c21b9640f53ed9329d05 (patch)
treec7001e5bfc551a24e3cee0b3fb014791e0685b44 /apps
parent9fae96bbf295fcd867d60bf45d9c3b825ae692c2 (diff)
downloaduscxml-9b8e09c3fde755ec26e5c21b9640f53ed9329d05.zip
uscxml-9b8e09c3fde755ec26e5c21b9640f53ed9329d05.tar.gz
uscxml-9b8e09c3fde755ec26e5c21b9640f53ed9329d05.tar.bz2
Removed easylogging due to JNI segfaults
Diffstat (limited to 'apps')
-rw-r--r--apps/uscxml-browser.cpp4
-rw-r--r--apps/uscxml-transform.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/uscxml-browser.cpp b/apps/uscxml-browser.cpp
index 5f48842..dff207b 100644
--- a/apps/uscxml-browser.cpp
+++ b/apps/uscxml-browser.cpp
@@ -6,7 +6,7 @@
#include "uscxml/interpreter/InterpreterMonitor.h"
#include "uscxml/util/DOM.h"
-#include <easylogging++.h>
+#include "uscxml/interpreter/Logging.h"
#include "uscxml/plugins/Factory.h"
#include "uscxml/server/HTTPServer.h"
@@ -122,4 +122,4 @@ int main(int argc, char** argv) {
std::this_thread::sleep_for(std::chrono::seconds(1));
}
return EXIT_SUCCESS;
-} \ No newline at end of file
+}
diff --git a/apps/uscxml-transform.cpp b/apps/uscxml-transform.cpp
index d9be7cf..a4c5e3e 100644
--- a/apps/uscxml-transform.cpp
+++ b/apps/uscxml-transform.cpp
@@ -16,7 +16,7 @@
#include "uscxml/server/HTTPServer.h"
#include "getopt.h"
-#include <easylogging++.h>
+#include "uscxml/interpreter/Logging.h"
#define ANNOTATE(envKey, annotationParam) \
envVarIsTrue(envKey) || std::find(options.begin(), options.end(), annotationParam) != options.end()