-
Notifications
You must be signed in to change notification settings - Fork 16
OTLibLog
Open Trading edited this page Feb 25, 2016
·
6 revisions
This will provide our logging functions, but is just a skeleton for now. See OTLibPyLog for logging with Python.
void vLogInit() Initializes the logging environment. This should be called from your OnInit() function. It is safe to call it a second time; subsequent calls will just be ignored.
void vSetLogLevel(int i)
int iGetLogLevel()
void vLog(int iLevel, string sMess)
void vError(string sMess)
void vWarn(string sMess)
void vInfo(string sMess)
void vDebug(string sMess)
void vTrace(string sMess)
Source code: MQL4/Libraries/OTMql4/OTLibLog.mq4
This file is automatically generated from the source code: do not edit.
Parent: CodeLibraries