Click or drag to resize

HomeDataControllerClearLog Method

Clear log entries

Namespace:  Velo.Web.Controllers
Assembly:  Velo.Web (in Velo.Web.dll) Version: 22.2.10.1 (22.2.10.450)
Syntax
public string ClearLog()

Return Value

Type: String
Log entries
Examples
Syntax: GET:
api/HomeData/ClearLog

This example as JavaScript clear log entries

var lURL = getURLRoot() + 'api/HomeData/ClearLog';
var jgxhr = $.get(lURL)
    .success(function (data) {
        document.getElementById("HomeExceptionLog").innerHTML = data;
    })
    .error(function (data) {
        document.getElementById("HomeExceptionLog").innerHTML = AlertInformationException(data);
    })
See Also