string addAppLogData(string appLogId, string name, string value)

Adds data to an app log entry on KioWare Server

Security

Trust Level Required: Medium Trust

Parameters

Name Description
appLogId string
The app log ID returned from KioApp.createAppLog.
name string
The name of the data entry.
value string
The value of the data entry.

Return

The app log data ID, or null on an insert failure.

Examples


var appLogId = KioApp.createAppLog("My App Log", "Data generated by my app");
if (appLogId != null)
	KioApp.addAppLogData(appLogId, "Data Entry 1", "My app log data");

Requirements

KioWare OS (Linux®) version 1.1 or greater.


Linux® is the registered trademark of Linus Torvalds in the U.S. and other countries.