Scripting Interfaces: Flow Related Objects
FlowLogger:
Synopsis
Used to set flow specific logging entries
E.g.
FlowLogger.Log("uuid", "entry");
API
-
Log(flowId, entry)
Creates a new Logging entry. If the log specified by the flowId does not exist then a new
entry is created
E.g.
FlowLogger.Log("uuid", "logging has started");
-
commit (flowId)
Saves the log whose id is flowId in its current state to disk. The log is stored in
HPSEARCH_HOME/flowLog/flowId.xml file.
If a file with the name flowId.xml exists then the new entries are
appended to the log.
E.g.
FlowLogger.commit("test");
Status: Implemented
(back to Notes)