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. | |
| void | BinaryNinja::LogForException (BNLogLevel level, const std::exception &e, const char *fmt,...) |
| Logs to the error console with the given BNLogLevel. | |
| void | BinaryNinja::LogTraceForException (const std::exception &e, const char *fmt,...) |
| LogTraceForException 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::LogDebugForException (const std::exception &e, const char *fmt,...) |
| LogDebugForException 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::LogInfoForException (const std::exception &e, const char *fmt,...) |
| LogInfoForException always writes text to the error console, and corresponds to the log level: InfoLog. | |
| void | BinaryNinja::LogWarnForException (const std::exception &e, const char *fmt,...) |
| LogWarnForException writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane. | |
| void | BinaryNinja::LogErrorForException (const std::exception &e, const char *fmt,...) |
| LogErrorForException writes text to the error console and pops up the error console. | |
| void | BinaryNinja::LogAlertForException (const std::exception &e, const char *fmt,...) |
| LogAlertForException pops up a message box displaying the alert message and logs to the error console. | |
| void | BinaryNinja::LogWithStackTrace (BNLogLevel level, const char *fmt,...) |
| Logs to the error console with the given BNLogLevel. | |
| void | BinaryNinja::LogTraceWithStackTrace (const char *fmt,...) |
| LogTraceWithStackTrace 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::LogDebugWithStackTrace (const char *fmt,...) |
| LogDebugWithStackTrace 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::LogInfoWithStackTrace (const char *fmt,...) |
| LogInfoWithStackTrace always writes text to the error console, and corresponds to the log level: InfoLog. | |
| void | BinaryNinja::LogWarnWithStackTrace (const char *fmt,...) |
| LogWarnWithStackTrace writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane. | |
| void | BinaryNinja::LogErrorWithStackTrace (const char *fmt,...) |
| LogErrorWithStackTrace writes text to the error console and pops up the error console. | |
| void | BinaryNinja::LogAlertWithStackTrace (const char *fmt,...) |
| LogAlertWithStackTrace 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. | |
| template<typename... T> | |
| void | BinaryNinja::LogForExceptionF (BNLogLevel level, const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| Logs to the error console with the given BNLogLevel. | |
| template<typename... T> | |
| void | BinaryNinja::LogTraceForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogTraceForExceptionF 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::LogDebugForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogDebugForExceptionF 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::LogInfoForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogInfoForExceptionF always writes text to the error console, and corresponds to the log level: InfoLog. | |
| template<typename... T> | |
| void | BinaryNinja::LogWarnForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogWarnForExceptionF 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::LogErrorForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogErrorForExceptionF writes text to the error console and pops up the error console. | |
| template<typename... T> | |
| void | BinaryNinja::LogAlertForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogAlertForExceptionF pops up a message box displaying the alert message and logs to the error console. | |
| template<typename... T> | |
| void | BinaryNinja::LogWithStackTraceF (BNLogLevel level, fmt::format_string< T... > format, T &&... args) |
| Logs to the error console with the given BNLogLevel. | |
| template<typename... T> | |
| void | BinaryNinja::LogTraceWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogTraceWithStackTraceF 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::LogDebugWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogDebugWithStackTraceF 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::LogInfoWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogInfoWithStackTraceF always writes text to the error console, and corresponds to the log level: InfoLog. | |
| template<typename... T> | |
| void | BinaryNinja::LogWarnWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogWarnWithStackTraceF 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::LogErrorWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogErrorWithStackTraceF writes text to the error console and pops up the error console. | |
| template<typename... T> | |
| void | BinaryNinja::LogAlertWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogAlertWithStackTraceF 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 | LogMessageWithStackTrace (size_t session, BNLogLevel level, const std::string &stackTrace, const std::string &msg, const std::string &logger_name="", size_t tid=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.
|
virtual |
Reimplemented 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. | |
| void | LogForException (BNLogLevel level, const std::exception &e, const char *fmt,...) |
| Logs to the error console with the given BNLogLevel. | |
| void | LogTraceForException (const std::exception &e, const char *fmt,...) |
| LogTraceForException 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 | LogDebugForException (const std::exception &e, const char *fmt,...) |
| LogDebugForException 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 | LogInfoForException (const std::exception &e, const char *fmt,...) |
| LogInfoForException always writes text to the error console, and corresponds to the log level: InfoLog. | |
| void | LogWarnForException (const std::exception &e, const char *fmt,...) |
| LogWarnForException writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane. | |
| void | LogErrorForException (const std::exception &e, const char *fmt,...) |
| LogErrorForException writes text to the error console and pops up the error console. | |
| void | LogAlertForException (const std::exception &e, const char *fmt,...) |
| LogAlertForException pops up a message box displaying the alert message and logs to the error console. | |
| void | LogWithStackTrace (BNLogLevel level, const char *fmt,...) |
| Logs to the error console with the given BNLogLevel. | |
| void | LogTraceWithStackTrace (const char *fmt,...) |
| LogTraceWithStackTrace 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 | LogDebugWithStackTrace (const char *fmt,...) |
| LogDebugWithStackTrace 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 | LogInfoWithStackTrace (const char *fmt,...) |
| LogInfoWithStackTrace always writes text to the error console, and corresponds to the log level: InfoLog. | |
| void | LogWarnWithStackTrace (const char *fmt,...) |
| LogWarnWithStackTrace writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane. | |
| void | LogErrorWithStackTrace (const char *fmt,...) |
| LogErrorWithStackTrace writes text to the error console and pops up the error console. | |
| void | LogAlertWithStackTrace (const char *fmt,...) |
| LogAlertWithStackTrace 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. | |
| template<typename... T> | |
| void | LogForExceptionF (BNLogLevel level, const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| Logs to the error console with the given BNLogLevel and a stack trace. | |
| template<typename... T> | |
| void | LogTraceForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogTraceForExceptionF 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 | LogDebugForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogDebugForExceptionF 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 | LogInfoForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogInfoForExceptionF always writes text to the error console, and corresponds to the log level: InfoLog. | |
| template<typename... T> | |
| void | LogWarnForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogWarnForExceptionF writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane. | |
| template<typename... T> | |
| void | LogErrorForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogErrorForExceptionF writes text to the error console and pops up the error console. | |
| template<typename... T> | |
| void | LogAlertForExceptionF (const std::exception &e, fmt::format_string< T... > format, T &&... args) |
| LogAlertForExceptionF pops up a message box displaying the alert message and logs to the error console. | |
| template<typename... T> | |
| void | LogWithStackTraceF (BNLogLevel level, fmt::format_string< T... > format, T &&... args) |
| Logs to the error console with the given BNLogLevel and a stack trace. | |
| template<typename... T> | |
| void | LogTraceWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogTraceWithStackTraceF 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 | LogDebugWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogDebugWithStackTraceF 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 | LogInfoWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogInfoWithStackTraceF always writes text to the error console, and corresponds to the log level: InfoLog. | |
| template<typename... T> | |
| void | LogWarnWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogWarnWithStackTraceF writes text to the error console including a warning icon, and also shows a warning icon in the bottom pane. | |
| template<typename... T> | |
| void | LogErrorWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogErrorWithStackTraceF writes text to the error console and pops up the error console. | |
| template<typename... T> | |
| void | LogAlertWithStackTraceF (fmt::format_string< T... > format, T &&... args) |
| LogAlertWithStackTraceF 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. | |
| 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 | |
| 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.
Thread Safe: | 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)
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogForException | ( | BNLogLevel | level, |
| const std::exception & | e, | ||
| const char * | fmt, | ||
| ... ) |
Logs to the error console with the given BNLogLevel.
Thread Safe: | level | BNLogLevel debug log level |
| e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogTraceForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogTraceForException 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)
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogDebugForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogDebugForException 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.
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogInfoForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogInfoForException always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogWarnForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogWarnForException 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.
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogErrorForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogErrorForException 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.
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogAlertForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogAlertForException pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogWithStackTrace | ( | BNLogLevel | level, |
| const char * | fmt, | ||
| ... ) |
Logs to the error console with the given BNLogLevel.
Thread Safe: | level | BNLogLevel debug log level |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogTraceWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogTraceWithStackTrace 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)
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogDebugWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogDebugWithStackTrace 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.
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogInfoWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogInfoWithStackTrace always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogWarnWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogWarnWithStackTrace 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.
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogErrorWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogErrorWithStackTrace 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.
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void Logger::LogAlertWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogAlertWithStackTrace pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
Logs to the error console with the given BNLogLevel.
Thread Safe: | 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)
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
Logs to the error console with the given BNLogLevel and a stack trace.
Thread Safe: | level | BNLogLevel debug log level |
| e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogTraceForExceptionF 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)
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogDebugForExceptionF 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.
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogInfoForExceptionF always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogWarnForExceptionF 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.
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogErrorForExceptionF 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.
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogAlertForExceptionF pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
Logs to the error console with the given BNLogLevel and a stack trace.
Thread Safe: | level | BNLogLevel debug log level |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogTraceWithStackTraceF 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)
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogDebugWithStackTraceF 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.
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogInfoWithStackTraceF always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogWarnWithStackTraceF 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.
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogErrorWithStackTraceF 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.
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
|
inline |
LogAlertWithStackTraceF pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
Thread Safe: | 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.
Thread Safe:
|
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.
Thread Safe: 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.
Thread Safe: 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.
Thread Safe: | 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)
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogForException | ( | BNLogLevel | level, |
| const std::exception & | e, | ||
| const char * | fmt, | ||
| ... ) |
Logs to the error console with the given BNLogLevel.
Thread Safe: | level | BNLogLevel debug log level |
| e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogTraceForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogTraceForException 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)
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogDebugForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogDebugForException 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.
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogInfoForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogInfoForException always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogWarnForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogWarnForException 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.
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogErrorForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogErrorForException 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.
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogAlertForException | ( | const std::exception & | e, |
| const char * | fmt, | ||
| ... ) |
LogAlertForException pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
Thread Safe: | e | Exception being handled. |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogWithStackTrace | ( | BNLogLevel | level, |
| const char * | fmt, | ||
| ... ) |
Logs to the error console with the given BNLogLevel.
Thread Safe: | level | BNLogLevel debug log level |
| fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogTraceWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogTraceWithStackTrace 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)
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogDebugWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogDebugWithStackTrace 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.
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogInfoWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogInfoWithStackTrace always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogWarnWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogWarnWithStackTrace 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.
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogErrorWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogErrorWithStackTrace 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.
Thread Safe: | fmt | C-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogAlertWithStackTrace | ( | const char * | fmt, |
| ... ) |
LogAlertWithStackTrace pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
Thread Safe: | 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.
Thread Safe: | 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)
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | 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.
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogForExceptionF | ( | BNLogLevel | level, |
| const std::exception & | e, | ||
| fmt::format_string< T... > | format, | ||
| T &&... | args ) |
Logs to the error console with the given BNLogLevel.
Thread Safe: | level | BNLogLevel debug log level |
| e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogTraceForExceptionF | ( | const std::exception & | e, |
| fmt::format_string< T... > | format, | ||
| T &&... | args ) |
LogTraceForExceptionF 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)
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogDebugForExceptionF | ( | const std::exception & | e, |
| fmt::format_string< T... > | format, | ||
| T &&... | args ) |
LogDebugForExceptionF 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.
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogInfoForExceptionF | ( | const std::exception & | e, |
| fmt::format_string< T... > | format, | ||
| T &&... | args ) |
LogInfoForExceptionF always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogWarnForExceptionF | ( | const std::exception & | e, |
| fmt::format_string< T... > | format, | ||
| T &&... | args ) |
LogWarnForExceptionF 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.
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogErrorForExceptionF | ( | const std::exception & | e, |
| fmt::format_string< T... > | format, | ||
| T &&... | args ) |
LogErrorForExceptionF 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.
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogAlertForExceptionF | ( | const std::exception & | e, |
| fmt::format_string< T... > | format, | ||
| T &&... | args ) |
LogAlertForExceptionF pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
Thread Safe: | e | Exception being handled. |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogWithStackTraceF | ( | BNLogLevel | level, |
| fmt::format_string< T... > | format, | ||
| T &&... | args ) |
Logs to the error console with the given BNLogLevel.
Thread Safe: | level | BNLogLevel debug log level |
| format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogTraceWithStackTraceF | ( | fmt::format_string< T... > | format, |
| T &&... | args ) |
LogTraceWithStackTraceF 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)
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogDebugWithStackTraceF | ( | fmt::format_string< T... > | format, |
| T &&... | args ) |
LogDebugWithStackTraceF 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.
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogInfoWithStackTraceF | ( | fmt::format_string< T... > | format, |
| T &&... | args ) |
LogInfoWithStackTraceF always writes text to the error console, and corresponds to the log level: InfoLog.
Log level InfoLog is the second most verbose logging level.
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogWarnWithStackTraceF | ( | fmt::format_string< T... > | format, |
| T &&... | args ) |
LogWarnWithStackTraceF 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.
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogErrorWithStackTraceF | ( | fmt::format_string< T... > | format, |
| T &&... | args ) |
LogErrorWithStackTraceF 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.
Thread Safe: | format | fmt-style format string. |
| ... | Variable arguments corresponding to the format string. |
| void BinaryNinja::LogAlertWithStackTraceF | ( | fmt::format_string< T... > | format, |
| T &&... | args ) |
LogAlertWithStackTraceF pops up a message box displaying the alert message and logs to the error console.
LogAlert corresponds to the log level: AlertLog.
Thread Safe: | 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.
Thread Safe: | minimumLevel | minimum level to log to stdout |
| void BinaryNinja::LogToStderr | ( | BNLogLevel | minimumLevel | ) |
Redirects the minimum level passed to standard error.
Thread Safe: | 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.
Thread Safe: | 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.