Commit 7dd92633 authored by Jeremy Hylton's avatar Jeremy Hylton

Log the ltid when the cache is opened.

parent c4a2f119
...@@ -189,8 +189,13 @@ class ClientCache: ...@@ -189,8 +189,13 @@ class ClientCache:
f[0].write(magic + '\0' * (headersize - len(magic))) f[0].write(magic + '\0' * (headersize - len(magic)))
current = 0 current = 0
self.log("%s: storage=%r, size=%r; file[%r]=%r" % if self._ltid:
(self.__class__.__name__, storage, size, current, p[current])) ts = "; last txn=%x" % u64(self._ltid)
else:
ts = ""
self.log("%s: storage=%r, size=%r; file[%r]=%r%s" %
(self.__class__.__name__, storage, size, current, p[current],
ts))
self._current = current self._current = current
self._setup_trace() self._setup_trace()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment