Go to the source code of this file.
◆ LogTemplate
◆ LogTemplateID
◆ Log()
Creates debug log (optional) from LogTemplate which are registred.
- Parameters
-
template_id | LogTemplateID ID of LogTemplate which was registred in proto/Logtemplate.h -> "class LogTemplates" |
message | string Debug message for log |
- Returns
void
Log(
"This is some debug log message", TEMPLATE_JINDRICH);
>> output to scriptExt.log (for GamutLogViewer)
Definition at line 75 of file logtemplates.c.
◆ LogError()
Creates error log (optional) from LogTemplate which are registred.
- Parameters
-
template_id | LogTemplateID ID of LogTemplate which was registred in proto/Logtemplate.h -> "class LogTemplates" |
message | string Error message for log |
- Returns
void
LogT(TEMPLATE_JINDRICH, "This is some error log message");
>> output to scriptExt.log (for GamutLogViewer)
Definition at line 129 of file logtemplates.c.
◆ LogInfo()
Creates info log (optional) from LogTemplate which are registred.
- Parameters
-
template_id | LogTemplateID ID of LogTemplate which was registred in proto/Logtemplate.h -> "class LogTemplates" |
message | string Info message for log |
- Returns
void
LogInfo(
"This is some info log message", TEMPLATE_JINDRICH);
>> output to scriptExt.log (for GamutLogViewer)
Definition at line 93 of file logtemplates.c.
◆ LogWarning()
Creates warning log (optional) from LogTemplate which are registred.
- Parameters
-
template_id | LogTemplateID ID of LogTemplate which was registred in proto/Logtemplate.h -> "class LogTemplates" |
message | string Warning message for log |
- Returns
void
LogT(TEMPLATE_JINDRICH, "This is some warning log message");
>> output to scriptExt.log (for GamutLogViewer)
Definition at line 111 of file logtemplates.c.
◆ SQFLog()
◆ SQFPrint()
void SQFPrint |
( |
string |
sqf_msg | ) |
|