diff options
author | Stefan Radomski <github@mintwerk.de> | 2016-12-09 12:54:46 (GMT) |
---|---|---|
committer | Stefan Radomski <github@mintwerk.de> | 2016-12-09 12:54:46 (GMT) |
commit | 1e56658c2415d154428fe419d8f0134c59856b6e (patch) | |
tree | 2122ec471af63ec0549fb28973a68f9dfaf10f8a /src/uscxml/interpreter/InterpreterImpl.cpp | |
parent | 9b8e09c3fde755ec26e5c21b9640f53ed9329d05 (diff) | |
download | uscxml-1e56658c2415d154428fe419d8f0134c59856b6e.zip uscxml-1e56658c2415d154428fe419d8f0134c59856b6e.tar.gz uscxml-1e56658c2415d154428fe419d8f0134c59856b6e.tar.bz2 |
Oh how I despise MSVC
Diffstat (limited to 'src/uscxml/interpreter/InterpreterImpl.cpp')
-rw-r--r-- | src/uscxml/interpreter/InterpreterImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/interpreter/InterpreterImpl.cpp b/src/uscxml/interpreter/InterpreterImpl.cpp index 7b79988..0f77285 100644 --- a/src/uscxml/interpreter/InterpreterImpl.cpp +++ b/src/uscxml/interpreter/InterpreterImpl.cpp @@ -248,7 +248,7 @@ bool InterpreterImpl::isTrue(const std::string& expr) { } catch (ErrorEvent e) { // test 244: deliver error execution - LOG(ERROR) << e; + LOG(USCXML_ERROR) << e; // test 344 enqueueInternal(e); @@ -280,7 +280,7 @@ Event InterpreterImpl::dequeueExternal(size_t blockMs) { if (_currEvent) { _dataModel.setEvent(_currEvent); -// LOG(ERROR) << e.name; +// LOG(USCXML_ERROR) << e.name; // test 233 if (_currEvent.invokeid.size() > 0 && |