-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogifyLevel.mqh
More file actions
20 lines (19 loc) · 948 Bytes
/
LogifyLevel.mqh
File metadata and controls
20 lines (19 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//+------------------------------------------------------------------+
//| LogifyLevel.mqh |
//| joaopedrodev |
//| https://www.mql5.com/en/users/joaopedrodev |
//+------------------------------------------------------------------+
#property copyright "joaopedrodev"
#property link "https://www.mql5.com/en/users/joaopedrodev"
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
enum ENUM_LOG_LEVEL
{
LOG_LEVEL_DEBUG = 0, // Debug
LOG_LEVEL_INFO, // Info
LOG_LEVEL_ALERT, // Alert
LOG_LEVEL_ERROR, // Error
LOG_LEVEL_FATAL, // Fatal
};
//+------------------------------------------------------------------+