writeData

void writeData(String path, String value, boolean append);

Writes data to the log file. It is used for logs in JS code.

Please note, that for the .docbuilder file the CDocBuilder.writeData method is not used.

Parameters

NameTypeDescription
pathStringThe path to the file where all the logs will be written.
valueStringThe data which will be written to the log file.
appendbooleanSpecifies if the new data will be appended to the already existing log file or a new file will be created.

Example

Java

CDocBuilder.initialize("");
CDocBuilder builder = new CDocBuilder();
builder.writeData("result.log", "Alert!", false);
CDocBuilder.dispose();

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).