Skip to content

Commit f7349de

Browse files
committed
Merge pull request #642 from couchbase/feature/issue_635_string_format
FIX #635 : Fix IllegalFormatConversionException
2 parents 539bd8b + 814f769 commit f7349de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/couchbase/lite/replicator/ChangeTracker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ public void process(HttpRequest request, HttpContext context) throws HttpExcepti
364364
continue;
365365
} else {
366366
long elapsed = (System.currentTimeMillis() - startTime) / 1000;
367-
Log.w(Log.TAG_CHANGE_TRACKER, "%s: Longpoll connection closed (by proxy?) after %.1f sec", this, elapsed);
367+
Log.w(Log.TAG_CHANGE_TRACKER, "%s: Longpoll connection closed (by proxy?) after %d sec", this, elapsed);
368368
if (elapsed >= 30) {
369369
// Looks like the connection got closed by a proxy (like AWS' load balancer) while the
370370
// server was waiting for a change to send, due to lack of activity.

0 commit comments

Comments
 (0)