public interface Logs
@GET(value="/3/Logs/nodes/{nodeidx}/files/{name}")
retrofit2.Call<LogsV3> fetch(@Path(value="nodeidx")
int nodeidx,
@Path(value="name")
java.lang.String name,
@Field(value="_exclude_fields")
java.lang.String _exclude_fields)
nodeidx - Index of node to query ticks for (0-based). -1 means current node.name - Which specific log file to read from the log file directory. If left unspecified, the system chooses
a default for you._exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@GET(value="/3/Logs/nodes/{nodeidx}/files/{name}")
retrofit2.Call<LogsV3> fetch(@Path(value="nodeidx")
int nodeidx,
@Path(value="name")
java.lang.String name)