diff options
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 20f1b204..6a1e6a63 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -97,13 +97,14 @@ extern "C" struct BNPlatform; struct BNAnalysisCompletionEvent; + //! Console log levels enum BNLogLevel { - DebugLog = 0, - InfoLog = 1, - WarningLog = 2, - ErrorLog = 3, - AlertLog = 4 + DebugLog = 0, //!< Debug logging level, most verbose logging level + InfoLog = 1, //!< Information logging level, default logging level + WarningLog = 2, //!< Warning logging level, messages show with warning icon in the UI + ErrorLog = 3, //!< Error logging level, messages show with error icon in the UI + AlertLog = 4 //!< Alert logging level, messages are displayed with popup message box in the UI }; enum BNEndianness |
