summaryrefslogtreecommitdiffstats
path: root/test/src/test-snippets.cpp
diff options
context:
space:
mode:
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
+}