Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
Use LogInfo for LOG macro
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpalmisc committed Jan 24, 2022
1 parent f34a46f commit 5628c5e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions source/StructureAnalyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@

using namespace BinaryNinja;

#define LOG(...) LogDebug("ObjectiveNinja: " __VA_ARGS__)
#define LOG_BREAK() LOG("===------------------------------------------------------------------===")
#define LOG(...) LogInfo("ObjectiveNinja: " __VA_ARGS__)
#define LOG_BREAK() LOG("===----------------------------------------------===")

StructureAnalyzer::StructureAnalyzer(BinaryViewRef bv)
: m_bv(bv)
Expand Down Expand Up @@ -443,7 +443,6 @@ void StructureAnalyzer::runPrivate()
}
}

LOG_BREAK();
LOG("Found %lu classes (%lu invalid)",
m_records.classes.size(), totalInvalidClasses);
LOG("Found %lu class references (%lu invalid)",
Expand Down

0 comments on commit 5628c5e

Please sign in to comment.