string addAppLogDataDouble(string appLogId, string name, double value)
Adds double 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 |
double The double 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.addAppLogDataDouble(appLogId, "Data Entry 1", 12.34);
Requirements
KioWare OS (Linux®) version 1.2 or greater.
Linux® is the registered trademark of Linus Torvalds in the U.S. and other countries.