view.log.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s3ninja Show documentation
Show all versions of s3ninja Show documentation
S3 ninja emulates the S3 API for development and testing purposes.
The newest version!
@*
* Made with all the love in the world
* by scireum in Remshalden, Germany
*
* Copyright by scireum GmbH
* http://www.scireum.de - [email protected]
*@
@args List entries, boolean canPagePrev, boolean canPageNext, String range, int prevStart, int nextStart
@extends(view.main.html, title: "API Log")
@section(sidebar) {
}
@section(header) {
API Log
All API calls are listed here.
Note that this log is stored in memory and will be cleared once the server re-starts.
}
Function
Description
Result
@if(entries.isEmpty()) {
No API calls so far...
}
@for(ninja.APILog.Entry entry : entries) {
@entry.getFunction()
@entry.getTod()
@entry.getDescription()
@entry.getResult()
@entry.getDuration()
}
@if(!entries.isEmpty()) {
}