SqlSystem.logfileWrite Method

Writes a text string into the standard Microsoft Dynamics AX SQL error logfile.

Syntax

public void logfileWrite(str Text)

Run On

Server

Parameters

  • Text
    Type: str
    The text (for example, a bookmark) to write to the logfile.

Remarks

Following an error situation of any kind (which is logged in the logfile), you may want to insert a personal bookmark that explains the current scenario.

Examples

static void myExample(Args _args) 
{ 
    SqlSystem SqlSystem; 
 
    SqlSystem = new SqlSystem(); 
    SqlSystem.logfileWrite("Recheck the returned data."); 
}

See Also

Reference

SqlSystem Class