1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

Hadrons: diskvector debug message for writes

This commit is contained in:
Antonin Portelli 2018-09-07 20:33:49 +01:00
parent fd24588212
commit 02c4ccf621

View File

@ -56,6 +56,9 @@ public:
// write to disk and cache
T &operator=(const T &obj) const
{
#ifdef DV_DEBUG
LOG(Debug) << "diskvector " << &master_ << ": writing to " << i_ << std::endl;
#endif
master_.cacheInsert(i_, obj);
master_.save(master_.filename(i_), obj);