summaryrefslogtreecommitdiffstats
path: root/test/src/test-snippets.cpp
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 /test/src/test-snippets.cpp
parent9fae96bbf295fcd867d60bf45d9c3b825ae692c2 (diff)
downloaduscxml-9b8e09c3fde755ec26e5c21b9640f53ed9329d05.zip
uscxml-9b8e09c3fde755ec26e5c21b9640f53ed9329d05.tar.gz
uscxml-9b8e09c3fde755ec26e5c21b9640f53ed9329d05.tar.bz2
Removed easylogging due to JNI segfaults
Diffstat (limited to 'test/src/test-snippets.cpp')
-rw-r--r--test/src/test-snippets.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/src/test-snippets.cpp b/test/src/test-snippets.cpp
index a9625b1..4b0fafe 100644
--- a/test/src/test-snippets.cpp
+++ b/test/src/test-snippets.cpp
@@ -7,6 +7,7 @@
#include "uscxml/config.h"
#include "uscxml/Interpreter.h"
+#include "uscxml/interpreter/LoggingImpl.h"
using namespace uscxml;
@@ -31,5 +32,6 @@ void microstep_snippet() {
}
int main(int argc, char** argv) {
+ Logger::getDefault().log(USCXML_FATAL) << "Foo!" << " BAR?";
microstep_snippet();
-} \ No newline at end of file
+}