0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 18:22:50 +01:00

modules/client/sync: Minor indentation [skip ci].

This commit is contained in:
Jason Volk 2020-04-14 19:14:09 -07:00
parent 1edc00d6e5
commit 9d5d2cc184

View file

@ -520,15 +520,16 @@ try
if(!ret) if(!ret)
checkpoint.committing(false); checkpoint.committing(false);
if(!data.phased && stats_info) log::info if(!data.phased && stats_info)
{ log::info
log, "request %s polylog commit:%b complete @%ld", {
loghead(data), log, "request %s polylog commit:%b complete @%ld",
ret, loghead(data),
data.phased? ret,
data.range.first: data.phased?
data.range.second data.range.first:
}; data.range.second
};
return ret; return ret;
} }