diff options
Diffstat (limited to 'src/main/java/com/amazon/carbonado/repo/logging')
-rw-r--r-- | src/main/java/com/amazon/carbonado/repo/logging/LoggingQuery.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/amazon/carbonado/repo/logging/LoggingQuery.java b/src/main/java/com/amazon/carbonado/repo/logging/LoggingQuery.java index e737288..6d07801 100644 --- a/src/main/java/com/amazon/carbonado/repo/logging/LoggingQuery.java +++ b/src/main/java/com/amazon/carbonado/repo/logging/LoggingQuery.java @@ -141,13 +141,13 @@ class LoggingQuery<S extends Storable> implements Query<S> { return mQuery.fetch();
}
- public Cursor<S> fetch(long from, Long to) throws FetchException {
+ public Cursor<S> fetchSlice(long from, Long to) throws FetchException {
Log log = mStorage.mLog;
if (log.isEnabled()) {
- log.write("Query.fetch(start, to) on " + this +
+ log.write("Query.fetchSlice(start, to) on " + this +
", from: " + from + ", to: " + to);
}
- return mQuery.fetch(from, to);
+ return mQuery.fetchSlice(from, to);
}
public Cursor<S> fetchAfter(S start) throws FetchException {
|