1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-28 05:03:59 +03:00
This commit is contained in:
Kegan Dougal
2016-01-13 15:31:15 +00:00
parent 5fa6f0037f
commit e4c38ac78c

View File

@@ -355,8 +355,8 @@ SyncApi.prototype._sync = function(syncOptions, attempt) {
} }
var dateStamp = new Date(); var dateStamp = new Date();
dateStamp = dateStamp.getHours() + ":" + dateStamp.getMinutes() + ":" + dateStamp.getSeconds() + dateStamp = dateStamp.getHours() + ":" + dateStamp.getMinutes() + ":" +
"." + dateStamp.getMilliseconds(); dateStamp.getSeconds() + "." + dateStamp.getMilliseconds();
debuglog("DEBUG[%s]: NEW _sync attempt=%s qp_timeout=%s cli_timeout=%s", debuglog("DEBUG[%s]: NEW _sync attempt=%s qp_timeout=%s cli_timeout=%s",
dateStamp, attempt, qps.timeout, clientSideTimeoutMs); dateStamp, attempt, qps.timeout, clientSideTimeoutMs);