Skip to content

Commit

Permalink
remove yuni logs
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Nov 7, 2024
1 parent 8405111 commit 78b6c51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/solver/modelConverter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ target_link_libraries(modelConverter
Antares::modelParser
Antares::antlr-interface
Antares::solver-expressions
Antares::logs
)

install(DIRECTORY include/antares
Expand Down
4 changes: 2 additions & 2 deletions src/solver/modelConverter/convertorVisitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include <iostream>

#include <antares/logs/logs.h>
/* #include <antares/logs/logs.h> */
#include <antares/solver/modelConverter/convertorVisitor.h>

#include "ExprLexer.h"
Expand Down Expand Up @@ -105,7 +105,7 @@ std::any ConvertorVisitor::visitIdentifier(ExprParser::IdentifierContext* contex
}
}

logs.error() << "No parameter or variable found with this name: " << context->getText();
/* logs.error() << "No parameter or variable found with this name: " << context->getText(); */
throw NoParameterOrVariableWithThisName(context->getText());
}

Expand Down

0 comments on commit 78b6c51

Please sign in to comment.