show
Show logs from a device (asynchronous).
Logs will be shown from the log of the name provided, or all if none. Additionally, logs will only be shown from after the minIndex and minTimestamp if provided (Note: the minimum timestamp will only be used if the minimum index is also provided).
This method will only provide a portion of the logs, and return the next index to pull logs from. Therefore, in order to pull all the logs from a device, you may have to call this method multiple times.
Parameters
the name of the log to read. If null, the device will report from all logs.
the minimum index to pull logs from. If null, the device will read from the oldest log.
the minimum timestamp to pull logs from. This parameter is only used if it and minIndex are not null.
the response callback.
Show logs from a device (synchronous).
Logs will be shown from the log of the name provided, or all if none. Additionally, logs will only be shown from after the minIndex and minTimestamp if provided (Note: the minimum timestamp will only be used if the minimum index is also provided).
This method will only provide a portion of the logs, and return the next index to pull logs from. Therefore, in order to pull all the logs from a device, you may have to call this method multiple times.
Return
The response.
Parameters
the name of the log to read. If null, the device will report from all logs.
the minimum index to pull logs from. If null, the device will read from the oldest log.
the minimum timestamp to pull logs from. This parameter is only used if it and minIndex are not null.
Throws
Transport error. See cause.