We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5743d2a commit 6ac05e9Copy full SHA for 6ac05e9
src/syntax/Syntax.cpp
@@ -42,6 +42,7 @@ namespace ecc{
42
43
bool Syntax::parseTokens(std::string fileName, std::vector<std::shared_ptr<LexicalToken>> &lexicalTokens) {
44
45
+ BOOST_LOG(ecc_logger::get()) << "Analyzing syntax in file: " << fileName;
46
BOOST_LOG(ecc_logger::get()) << "Started parsing the lexical tokens [PHASE " << m_phase << "]";
47
48
// Prepare the stack
@@ -159,6 +160,7 @@ namespace ecc{
159
160
161
BOOST_LOG(ecc_logger::get()) << "Finished parsing the lexical tokens [PHASE " << m_phase << "]";
162
BOOST_LOG(ecc_logger::get()) << (success ? "SUCCESS" : "FAILURE");
163
+ BOOST_LOG(ecc_logger::get()) << "----------";
164
return success;
165
}
166
0 commit comments