string addAppLogDataBool(string appLogId, string name, bool value)

Adds boolean 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 bool
The boolean 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.addAppLogDataBool(appLogId, "Data Entry 1", true);

Requirements

KioWare OS (Linux®) version 1.2 or greater.


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