Writes data to the log file. It is used for logs in JS code.
Name | Type | Description |
path | str | The path to the file where all the logs will be written. |
value | str | The data which will be written to the log file. |
append | bool | Specifies if the new data will be appended to the already existing log file or a new file will be created. |
builder = docbuilder.CDocBuilder() builder.WriteData("result.log", "Alert!", false)