mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Changed some debugging logging
This commit is contained in:
parent
f0b5a4eb94
commit
592471434f
3 changed files with 12 additions and 5 deletions
|
@ -2561,7 +2561,7 @@ DbgTypedValue DbgExprEvaluator::DoLookupField(BfAstNode* targetSrc, DbgTypedValu
|
|||
}
|
||||
|
||||
Fail("Static variable not found, may have be optimized out", targetSrc);
|
||||
BfLogDbgExpr(" Static variable optimized out\n");
|
||||
//BfLogDbgExpr(" Static variable optimized out\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -4776,7 +4776,7 @@ void DbgExprEvaluator::Visit(BfThisExpression* thisExpr)
|
|||
|
||||
void DbgExprEvaluator::Visit(BfIdentifierNode* identifierNode)
|
||||
{
|
||||
BfLogDbgExpr("Visit BfIdentifierNode %s\n", identifierNode->ToString().c_str());
|
||||
//BfLogDbgExpr("Visit BfIdentifierNode %s\n", identifierNode->ToString().c_str());
|
||||
|
||||
mResult = LookupIdentifier(identifierNode, false, NULL);
|
||||
if (!mResult)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue