summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorplafosse <peter@vector35.com>2016-06-29 17:49:36 -0400
committerplafosse <peter@vector35.com>2016-06-29 17:49:36 -0400
commit6f4cdf61dae3a6be848c524fc66e2bd86711d82e (patch)
tree107aba7906d391a8cd34ae10658a5bcebfc6d0d2 /binaryninjacore.h
parent26964659b4e301d6fd662526560acdc475810ae4 (diff)
Adding initial documentation for c++
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h11
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