Classes | |
class | BinaryNinja::LogListener |
class | BinaryNinja::Logger |
Logger is a class allowing scoped logging to the console. More... | |
class | BinaryNinja::LogRegistry |
A class allowing registering and retrieving Loggers. More... | |
Functions | |
void | BinaryNinja::Log (BNLogLevel level, const char *fmt,...) |
Logs to the error console with the given BNLogLevel. | |
void | BinaryNinja::LogTrace (const char *fmt,...) |
LogTrace only writes text to the error console if the console is set to log level: DebugLog Log level and the build is not a DEBUG build (i.e. | |
void | BinaryNinja::LogDebug (const char *fmt,...) |
LogDebug only writes text to the error console if the console is set to log level: DebugLog Log level DebugLog is the most verbose logging level in release builds. | |
void | BinaryNinja::LogInfo (const char *fmt,...) |
LogInfo always writes text to the error console, and corresponds to the log level: InfoLog. | |
void | BinaryNinja::LogWarn (const char *fmt,...) |
LogWarn writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane. | |
void | BinaryNinja::LogError (const char *fmt,...) |
LogError writes text to the error console and pops up the error console. | |
void | BinaryNinja::LogAlert (const char *fmt,...) |
LogAlert pops up a message box displaying the alert message and logs to the error console. | |
template<typename... T> | |
void | BinaryNinja::LogF (BNLogLevel level, fmt::format_string< T... > format, T &&... args) |
Logs to the error console with the given BNLogLevel. | |
template<typename... T> | |
void | BinaryNinja::LogTraceF (fmt::format_string< T... > format, T &&... args) |
LogTrace only writes text to the error console if the console is set to log level: DebugLog Log level and the build is not a DEBUG build (i.e. | |
template<typename... T> | |
void | BinaryNinja::LogDebugF (fmt::format_string< T... > format, T &&... args) |
LogDebug only writes text to the error console if the console is set to log level: DebugLog Log level DebugLog is the most verbose logging level in release builds. | |
template<typename... T> | |
void | BinaryNinja::LogInfoF (fmt::format_string< T... > format, T &&... args) |
LogInfo always writes text to the error console, and corresponds to the log level: InfoLog. | |
template<typename... T> | |
void | BinaryNinja::LogWarnF (fmt::format_string< T... > format, T &&... args) |
LogWarn writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane. | |
template<typename... T> | |
void | BinaryNinja::LogErrorF (fmt::format_string< T... > format, T &&... args) |
LogError writes text to the error console and pops up the error console. | |
template<typename... T> | |
void | BinaryNinja::LogAlertF (fmt::format_string< T... > format, T &&... args) |
LogAlert pops up a message box displaying the alert message and logs to the error console. | |
void | BinaryNinja::LogToStdout (BNLogLevel minimumLevel) |
Redirects the minimum level passed to standard out. | |
void | BinaryNinja::LogToStderr (BNLogLevel minimumLevel) |
Redirects the minimum level passed to standard error. | |
bool | BinaryNinja::LogToFile (BNLogLevel minimumLevel, const std::string &path, bool append=false) |
Redirects minimum log level to the file at `path`, optionally appending rather than overwriting. | |
void | BinaryNinja::CloseLogs () |
Close all log files. | |
class BinaryNinja::LogListener |
Public Member Functions | |
virtual | ~LogListener () |
virtual void | LogMessage (size_t session, BNLogLevel level, const std::string &msg, const std::string &logger_name="", size_t tid=0)=0 |
virtual void | CloseLog () |
virtual BNLogLevel | GetLogLevel () |
Static Public Member Functions | |
static void | RegisterLogListener (LogListener *listener) |
static void | UnregisterLogListener (LogListener *listener) |
static void | UpdateLogListeners () |
|
inlinevirtual |
|
static |
|
static |
|
static |
|
pure virtual |
Implemented in LogListModel.
|
inlinevirtual |
|
inlinevirtual |
Reimplemented in LogListModel.
class BinaryNinja::Logger |
Logger is a class allowing scoped logging to the console.
Public Member Functions | |
Logger (BNLogger *logger) | |
Logger (const std::string &loggerName, size_t sessionId=0) | |
Create a logger with the specified name and session ID. | |
void | Log (BNLogLevel level, const char *fmt,...) |
Logs to the error console with the given BNLogLevel. | |
void | LogTrace (const char *fmt,...) |
LogTrace only writes text to the error console if the console is set to log level: DebugLog Log level and the build is not a DEBUG build (i.e. | |
void | LogDebug (const char *fmt,...) |
LogDebug only writes text to the error console if the console is set to log level: DebugLog Log level DebugLog is the most verbose logging level in release builds. | |
void | LogInfo (const char *fmt,...) |
LogInfo always writes text to the error console, and corresponds to the log level: InfoLog. | |
void | LogWarn (const char *fmt,...) |
LogWarn writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane. | |
void | LogError (const char *fmt,...) |
LogError writes text to the error console and pops up the error console. | |
void | LogAlert (const char *fmt,...) |
LogAlert pops up a message box displaying the alert message and logs to the error console. | |
template<typename... T> | |
void | LogF (BNLogLevel level, fmt::format_string< T... > format, T &&... args) |
Logs to the error console with the given BNLogLevel. | |
template<typename... T> | |
void | LogTraceF (fmt::format_string< T... > format, T &&... args) |
LogTrace only writes text to the error console if the console is set to log level: DebugLog Log level and the build is not a DEBUG build (i.e. | |
template<typename... T> | |
void | LogDebugF (fmt::format_string< T... > format, T &&... args) |
LogDebug only writes text to the error console if the console is set to log level: DebugLog Log level DebugLog is the most verbose logging level in release builds. | |
template<typename... T> | |
void | LogInfoF (fmt::format_string< T... > format, T &&... args) |
LogInfo always writes text to the error console, and corresponds to the log level: InfoLog. | |
template<typename... T> | |
void | LogWarnF (fmt::format_string< T... > format, T &&... args) |
LogWarn writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane. | |
template<typename... T> | |
void | LogErrorF (fmt::format_string< T... > format, T &&... args) |
LogError writes text to the error console and pops up the error console. | |
template<typename... T> | |
void | LogAlertF (fmt::format_string< T... > format, T &&... args) |
LogAlert pops up a message box displaying the alert message and logs to the error console. | |
std::string | GetName () |
Get the name registered for this Logger. | |
size_t | GetSessionId () |
Get the session ID registered for this logger. | |
void | Indent () |
void | Dedent () |
void | ResetIndent () |
Public Member Functions inherited from BinaryNinja::CoreRefCountObject< BNLogger, BNNewLoggerReference, BNFreeLogger > | |
CoreRefCountObject () | |
virtual | ~CoreRefCountObject () |
BNLogger * | GetObject () const |
void | AddRef () |
void | Release () |
void | AddRefForRegistration () |
void | ReleaseForRegistration () |
void | AddRefForCallback () |
void | ReleaseForCallback () |
Friends | |
struct | Iterator |
Additional Inherited Members | |
Static Public Member Functions inherited from BinaryNinja::CoreRefCountObject< BNLogger, BNNewLoggerReference, BNFreeLogger > | |
static BNLogger * | GetObject (CoreRefCountObject *obj) |
static BNLogger * | GetObject (const CoreRefCountObject *obj) |
Public Attributes inherited from BinaryNinja::CoreRefCountObject< BNLogger, BNNewLoggerReference, BNFreeLogger > | |
std::atomic< int > | m_refs |
bool | m_registeredRef |
BNLogger * | m_object |
Logger::Logger | ( | BNLogger * | logger | ) |
BinaryNinja::Logger::Logger | ( | const std::string & | loggerName, |
size_t | sessionId = 0 ) |
Create a logger with the specified name and session ID.
Session ID corresponds to the tab for the specified BinaryView, and the default of 0 will log to *all tabs*.
loggerName | Name of the logger to create |
sessionId | Session ID for the logger. |
void Logger::Log | ( | BNLogLevel | level, |
const char * | fmt, | ||
... ) |
Logs to the error console with the given BNLogLevel.
level | BNLogLevel debug log level |
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void Logger::LogTrace | ( | const char * | fmt, |
... ) |
LogTrace only writes text to the error console if the console is set to log level: DebugLog Log level and the build is not a DEBUG build (i.e.
the preprocessor directive _DEBUG is defined)
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void Logger::LogDebug | ( | const char * | fmt, |
... ) |
LogDebug only writes text to the error console if the console is set to log level: DebugLog Log level DebugLog is the most verbose logging level in release builds.
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void Logger::LogInfo | ( | const char * | fmt, |
... ) |
LogInfo always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void Logger::LogWarn | ( | const char * | fmt, |
... ) |
LogWarn writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane.
LogWarn corresponds to the log level: WarningLog.
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void Logger::LogError | ( | const char * | fmt, |
... ) |
LogError writes text to the error console and pops up the error console.
Additionally, Errors in the console log include a error icon. LogError corresponds to the log level: ErrorLog.
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void Logger::LogAlert | ( | const char * | fmt, |
... ) |
LogAlert pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
|
inline |
Logs to the error console with the given BNLogLevel.
level | BNLogLevel debug log level |
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
|
inline |
LogTrace only writes text to the error console if the console is set to log level: DebugLog Log level and the build is not a DEBUG build (i.e.
the preprocessor directive _DEBUG is defined)
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
|
inline |
LogDebug only writes text to the error console if the console is set to log level: DebugLog Log level DebugLog is the most verbose logging level in release builds.
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
|
inline |
LogInfo always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
|
inline |
LogWarn writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane.
LogWarn corresponds to the log level: WarningLog.
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
|
inline |
LogError writes text to the error console and pops up the error console.
Additionally, Errors in the console log include a error icon. LogError corresponds to the log level: ErrorLog.
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
|
inline |
LogAlert pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
string Logger::GetName | ( | ) |
size_t Logger::GetSessionId | ( | ) |
Get the session ID registered for this logger.
void Logger::Indent | ( | ) |
void Logger::Dedent | ( | ) |
void Logger::ResetIndent | ( | ) |
|
friend |
class BinaryNinja::LogRegistry |
A class allowing registering and retrieving Loggers.
Static Public Member Functions | |
static Ref< Logger > | CreateLogger (const std::string &loggerName, size_t sessionId=0) |
Create a logger with the specified name and session ID. | |
static Ref< Logger > | GetLogger (const std::string &loggerName, size_t sessionId=0) |
Get a logger with the specified name and session ID. | |
static std::vector< std::string > | GetLoggerNames () |
Get the list of registered Logger names. | |
|
static |
Create a logger with the specified name and session ID.
BinaryView::CreateLogger
instead of this.Session ID corresponds to the tab for the specified BinaryView, and the default of 0 will log to *all tabs*.
loggerName | Name of the logger to create |
sessionId | Session ID for the logger |
|
static |
Get a logger with the specified name and session ID.
Session ID corresponds to the tab for the specified BinaryView, and the default of 0 will log to *all tabs*.
loggerName | Name of the logger to create |
sessionId | Session ID for the logger |
|
static |
void BinaryNinja::Log | ( | BNLogLevel | level, |
const char * | fmt, | ||
... ) |
Logs to the error console with the given BNLogLevel.
level | BNLogLevel debug log level |
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogTrace | ( | const char * | fmt, |
... ) |
LogTrace only writes text to the error console if the console is set to log level: DebugLog Log level and the build is not a DEBUG build (i.e.
the preprocessor directive _DEBUG is defined)
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogDebug | ( | const char * | fmt, |
... ) |
LogDebug only writes text to the error console if the console is set to log level: DebugLog Log level DebugLog is the most verbose logging level in release builds.
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogInfo | ( | const char * | fmt, |
... ) |
LogInfo always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogWarn | ( | const char * | fmt, |
... ) |
LogWarn writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane.
LogWarn corresponds to the log level: WarningLog.
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogError | ( | const char * | fmt, |
... ) |
LogError writes text to the error console and pops up the error console.
Additionally, Errors in the console log include a error icon. LogError corresponds to the log level: ErrorLog.
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogAlert | ( | const char * | fmt, |
... ) |
LogAlert pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
fmt | C-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogF | ( | BNLogLevel | level, |
fmt::format_string< T... > | format, | ||
T &&... | args ) |
Logs to the error console with the given BNLogLevel.
level | BNLogLevel debug log level |
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogTraceF | ( | fmt::format_string< T... > | format, |
T &&... | args ) |
LogTrace only writes text to the error console if the console is set to log level: DebugLog Log level and the build is not a DEBUG build (i.e.
the preprocessor directive _DEBUG is defined)
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogDebugF | ( | fmt::format_string< T... > | format, |
T &&... | args ) |
LogDebug only writes text to the error console if the console is set to log level: DebugLog Log level DebugLog is the most verbose logging level in release builds.
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogInfoF | ( | fmt::format_string< T... > | format, |
T &&... | args ) |
LogInfo always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogWarnF | ( | fmt::format_string< T... > | format, |
T &&... | args ) |
LogWarn writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane.
LogWarn corresponds to the log level: WarningLog.
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogErrorF | ( | fmt::format_string< T... > | format, |
T &&... | args ) |
LogError writes text to the error console and pops up the error console.
Additionally, Errors in the console log include a error icon. LogError corresponds to the log level: ErrorLog.
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogAlertF | ( | fmt::format_string< T... > | format, |
T &&... | args ) |
LogAlert pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
format | fmt-style format string. |
... | Variable arguments corresponding to the format string. |
void BinaryNinja::LogToStdout | ( | BNLogLevel | minimumLevel | ) |
Redirects the minimum level passed to standard out.
minimumLevel | minimum level to log to stdout |
void BinaryNinja::LogToStderr | ( | BNLogLevel | minimumLevel | ) |
Redirects the minimum level passed to standard error.
minimumLevel | minimum level to log to stderr |
bool BinaryNinja::LogToFile | ( | BNLogLevel | minimumLevel, |
const std::string & | path, | ||
bool | append = false ) |
Redirects minimum log level to the file at `path`, optionally appending rather than overwriting.
minimumLevel | minimum level to log to stderr |
path | Path to log to |
append | Optional flag for specifying appending. True = append, False = overwrite. |
void BinaryNinja::CloseLogs | ( | ) |
Close all log files.